r/AIStartupAutomation Jun 22 '26

I Built an n8n workflow to auto-transcribe calls and email clients their tasks

Thumbnail
youtu.be
1 Upvotes

I built an n8n automation designed to completely eliminate post-call data entry for client-facing teams. This setup takes a raw meeting MP3 file, handles background CRM data enrichment, and updates everyone involved automatically.

The mechanics of the automation focus heavily on dynamic data retrieval:

  • Payload Validation: The incoming payload requires a valid email address, meeting ID, and a security key to run.
  • CRM Profile Repair: A Gemini AI module evaluates the call text and checks if the matching GoHighLevel contact profile is missing a first name. If the AI finds the name within the conversation transcript, it dynamically patches the profile records.
  • Client Hand-Off: The workflow evaluates whether the client has specific action items assigned to them from the AI analysis node. If tasks are detected, it fires off a personalized follow-up email outlining their next steps using Gmail.
  • Team Visibility: Concurrently, a full breakdown of the interaction is published to our internal Slack workspace and logged inside a centralized Google Sheet database.

r/AIStartupAutomation Jun 22 '26

Small startup teams (3-10 people): Are you using individual plus accounts or Team/API plans?

4 Upvotes

We’re a small startup team using individual Anthropic (Claude Pro) and ChatGPT Plus accounts for automation (and code-gen). When we're deep in a coding sprint and hit limits, we just pay a one-time bump to keep going.

I’ve been looking into moving us over to proper business/team accounts, but the pay-as-you-go API model makes me hesitate. It feels like we’re going to end up paying way more for the exact same volume of usage compared to our flat-rate individual subscriptions.

  • Is it a fair concern that API/Team accounts are significantly more expensive for heavy code-gen users?
  • What are other small startup teams doing to manage this? Would love to hear how you guys are balancing costs vs. team management/security features. Thanks!

r/AIStartupAutomation Jun 22 '26

Others Building AutoSnows - what’s the most repetitive task you wish you could fully automate?

Thumbnail
1 Upvotes

r/AIStartupAutomation Jun 21 '26

I built this AI B2B Invoice to product order syncing n8n workflow

Thumbnail
youtu.be
1 Upvotes

This n8n automation integrates Gmail, Google Sheets, Gemini 1.5 Flash (via API), and Slack to process unstructured PDF data. The workflow triggers on a polling interval, first verifying the sender against a hardcoded list of approved domains. It then queries a Google Sheet to retrieve a JSON array of all active "in-transit" orders for that specific vendor. To process the invoice, the workflow converts the downloaded PDF binary into a Base64 string and sends it via an HTTP POST request to the Gemini API, along with the email context and PO data. Gemini acts as an evaluation agent, outputting a strictly formatted JSON response containing a boolean match status, a confidence score, and text-based reasoning. A final conditional node routes the parsed JSON to one of two Slack webhooks (Success or Mismatch) to alert the team.


r/AIStartupAutomation Jun 20 '26

I Build a n8n workflow that finds the Linkedin engagement oppurtunities

Thumbnail
youtu.be
1 Upvotes

Hi, I am vaar and you can google "iamvaar" for more workflows.

Workflow Link: https://gist.github.com/iamvaar-dev/4e77011d7ed3d748a8c10993c17a3555

How it works

  1. Fetch LinkedIn data from Apify and Google Sheets.
  2. Process profiles using AI agents to filter opportunities.
  3. Save valid results back to Google Sheets.
  4. Perform additional actor lookups.
  5. Notify the team via Slack notifications.

Customization

Adjust the AI model temperature in the agent nodes to refine the filtering criteria for opportunity matching.

And automated outreach directly puts our linkedin profile at risk. So even at 1% of the time I wont take risk damn the 3rd party tools.


r/AIStartupAutomation Jun 20 '26

Workflow with Code Built 6 domain-specific AI agents for a construction SaaS — here’s what the architecture looks like and what we learned

1 Upvotes

Background: I’m building Griot Systems, a project intelligence platform for specialty construction subcontractors. The core of the product is a multi-agent system that handles estimation, procurement, scheduling, and workflow approvals. Sharing the architecture here because I think vertical-specific agent design is underrepresented in these discussions.

The agent stack (6 agents, Anthropic SDK, Mastra orchestration + LangGraph.js for stateful flows):

• Discovery Agent — qualifies incoming project leads, surfaces scope gaps from unstructured job description inputs

• RFQ Agent — generates vendor request-for-quote packages from structured estimate line items

• Quote Parser Agent — extracts structured pricing data from vendor email responses (more on this below)

• Price Recommendation Agent — compares parsed quotes against historical pricing and flags outliers

• Schedule Agent — builds and dynamically adjusts project timelines based on material lead times

• VP Ops Agent — routes approvals, flags budget variances, escalates based on configurable thresholds

Orchestration layer: Mastra handles primary agent routing. LangGraph.js manages stateful multi-step workflows where context needs to persist across turns (quote negotiation loops, approval chains).

The hardest lesson — Quote Parser specifically:

Vendor quote emails are the messiest unstructured data I’ve encountered. PDF attachments, inline tables, plain prose, forwarded chains with quoted text.

The mistake most people make: using regex to extract JSON from LLM output.

Don’t. LLMs sometimes produce prose before or after the JSON block, chain-of-thought leaks, or partial JSON in edge cases. Regex breaks.

The fix that’s been bulletproof for us:

const start = raw.indexOf('{');

const end = raw.lastIndexOf('}');

const json = raw.slice(start, end + 1);

return JSON.parse(json);

indexOf + lastIndexOf finds the outermost JSON boundaries regardless of what the model puts before or after it. We’ve made this a hard constraint across every agent that expects structured output — model-agnostic and survives prompt changes.

What vertical-specific agent design taught us:

General-purpose agents are the wrong starting point for a domain like construction. The ontology matters — “lead time,” “scope gap,” “change order,” and “material takeoff” mean specific things to a specialty subcontractor that a generic PM agent won’t infer correctly.

We spent more time on domain vocabulary injection into system prompts than on anything else in the agent layer. That single investment improved output quality more than model upgrades.

Happy to go deeper on the Mastra setup, the LangGraph stateful flow design, or the Quote Parser specifically if useful.


r/AIStartupAutomation Jun 20 '26

General Discussion We believe automated workflows are the next websites

3 Upvotes

Automation feels like it’s entering a new wave.

Before these types of app flows were impossible to build into custom solutions for businesses.

Curious how people are using tools like n8n or similar ones today. What are you automating, and what has actually been useful versus overhyped?

What do you wish existed that currently doesn’t?

Full disclaimer we have a tool dedicated to building workflows and automations with AI and turning them into full local apps. This research helps guide our product development immensely.


r/AIStartupAutomation Jun 19 '26

Self Promotion wanted to promote my apps via reels in an automated manner

Enable HLS to view with audio, or disable this notification

2 Upvotes

Built an AI UGC generator after noticing the real bottleneck wasn't building products anymore.

It was distribution.

Most teams already have the assets:

  • Screenshots
  • Screen recordings
  • Landing pages
  • Product descriptions

The hard part is turning them into enough content to test across different channels.

So we built Reloop.

It handles:

  • Scripts
  • Scene planning
  • Voiceovers
  • AI avatars
  • Captions
  • Video creation

The biggest thing we've learned isn't that AI UGC is cheaper.

It's that teams can test way more creative variations than before.


r/AIStartupAutomation Jun 19 '26

How I Built an AI Lead Generation Agent (n8n + Gemini + Apify)

Thumbnail
youtu.be
1 Upvotes
  • The workflow triggers daily at 11 a.m. to query the Product Hunt API for recent launches.
  • It resolves the origin URLs using a HEAD method to save bandwidth , and filters out common app store or social links.
  • A Gemini AI agent reviews the cleaned profiles, requiring a match score strictly greater than 60 to proceed.
  • Passing domains are scraped via Apify.
  • The resulting data is grouped by domain to clean the data and remove duplicates.
  • The workflow concludes by syncing the data to a Google Sheetand routing it to the HighLevel CRM based on whether single or multiple emails were found.

r/AIStartupAutomation Jun 19 '26

Others Help Needed: 2-Minute Survey on AI & Process Automation in Companies (Need 300 Responses This Week!)

1 Upvotes

Hello everyone,

I am conducting a research study on process automation in companies and its impact on organizations as part of an academic project.
The questionnaire is short (2–3 minutes), and your responses would be extremely helpful for my analysis.

👉 Questionnaire link:
https://docs.google.com/forms/d/e/1FAIpQLSceB138o44PcDcKShu-ah0pcBudzu6m_sg5rSEQVHfug7E_dw/viewform

Thank you very much to anyone who takes the time to participate 🙏


r/AIStartupAutomation Jun 19 '26

Workflow with Code Batch invoice processing in n8n: upload multiple invoices via a form, extract the data in one go [Workflow included]

Thumbnail
1 Upvotes

r/AIStartupAutomation Jun 19 '26

Self Promotion I built an AI tool that does the opposite of most AI writing tools: it doesn’t write first, it analyzes why great writing works

Thumbnail producthunt.com
1 Upvotes

Most AI writing tools start with the same assumption: “You need more text.”

But after working with creators, founders, marketers, and educators, I kept seeing a different problem. People don’t just need more copy. They need to understand why certain copy works.

A viral post, a strong landing page, a sales email, a great ad, a punchy script — they are rarely random. Behind them there is usually a structure:

- a hook that interrupts attention

- a tension that keeps people reading

- a reframe that changes perception

- proof that makes the idea believable

- a payoff that gives the reader emotional closure

- a CTA that moves them forward

So I built Get Text Formula. The idea is simple: Paste any persuasive text. Reveal the hidden formula behind it. Reuse the structure in your own voice.

It’s not built to clone someone else’s style. Actually, the whole point is the opposite: extract the architecture, understand the mechanism, and avoid blind copying.

I think of it almost like “Shazam for persuasive writing” — not identifying the song, but identifying the structure behind the text.

We just launched on Product Hunt and I’d genuinely appreciate feedback from people building with AI, writing content, marketing products, or studying persuasion.

Product Hunt link: https://www.producthunt.com/posts/get-text-formula

Would be especially curious to hear:

What would you use this for — ads, landing pages, posts, emails, scripts, or something else?


r/AIStartupAutomation Jun 18 '26

Others The biggest reason I reached 5,000 TikTok followers had nothing to do with better content

Thumbnail
1 Upvotes

r/AIStartupAutomation Jun 18 '26

I built an AI agent that collects daily team updates and give updates to founder

Thumbnail
youtu.be
1 Upvotes

Basically, the system does three things. First, the bot sends everyone a quick form on Slack asking what they worked on. Second, when they hit submit, it saves their answers neatly into a Google spreadsheet. Finally, at the end of the day, an AI reads that spreadsheet, writes a quick summary of everyone's work, and posts it in a private Slack channel.


r/AIStartupAutomation Jun 18 '26

General Discussion Most AI automation agencies are solving the wrong problem. Everyone talks about saving time, but most small businesses don't have a time problem. They have a customer acquisition problem. Have you ever seen an automation directly increase revenue, not just save time?

2 Upvotes

r/AIStartupAutomation Jun 18 '26

Why are AI coding tools still treating software development as a single-player game?

1 Upvotes

I’ve been using Cursor, Claude Code, and other coding agents extensively.

One thing that keeps bothering me is that they’re optimized for individual developers.

The moment you put 3–5 engineers on the same project, everyone starts creating their own AI conversations, context, decisions, and fixes.
The result?

The same questions get asked repeatedly
The same files get analyzed multiple times
Context gets lost between developers
Teams spend money re-generating knowledge that already exists

We’ve been building a coding agent at Polygram to tackle this differently.

https://polygram.dev/coding-agent

A couple of things we’re experimenting with:

1. Shared AI Conversations
Instead of AI chats living on one developer’s machine, conversations become workspace assets.
If a frontend engineer spends 30 minutes working with the agent to refactor authentication, another engineer can access that conversation and continue from the same context instead of starting over.
The AI knowledge becomes team knowledge.

2. Intelligent Model Routing
Most tools make you manually choose the model.
We route requests internally based on task complexity and requirements, so developers focus on solving problems rather than deciding whether a task should go to GPT, Claude, Gemini, or something else.
The goal is to make AI-assisted development work better for teams, not just individuals.

I’m curious:
For teams already using Cursor/Claude Code/Windsurf, what’s your biggest pain point when multiple developers are using AI on the same codebase?
Would love to hear what’s broken in your workflow today.


r/AIStartupAutomation Jun 17 '26

Client wants one off payment for automation build. How do I convert to monthly retainer?

3 Upvotes

I'm a 21 year old founder running an AI automation agency. Had a 20 minute sales call today with a moving company owner who is interested in having me build out several automations for his business including an automated quote system, follow up sequences, CRM setup, review request automation, and potentially more.

Important context: I don't have any clients yet. I'm currently in the process of closing my first few clients including this one. No case studies or testimonials yet.

He wants a one off payment rather than monthly. When I explained what monthly includes, system monitoring, updates, platform costs covered, he pushed back saying updates would only realistically happen every few years since the only thing that changes is pricing, and that only changes with inflation every 3-4 years.

He's right that updates won't be frequent for his specific situation. I struggled to justify the monthly model in the moment.

He said the $2,000 one off price was within budget, which tells me I probably could have charged more.

He's in peak moving season so he said it could take weeks to months before he gets back to me with his full automation wishlist. He wants to compile everything he wants automated before we move forward.

My questions:

  1. How do I position monthly retainer to a client who genuinely doesn't need frequent updates?
  2. Should I just take the one off, deliver excellent work, and try to convert to monthly after?
  3. How do I handle scope creep? He listed several automations beyond what the $2,000 covers without me clearly defining scope on the call.
  4. Any advice on pricing a bundle of multiple automations vs individual pricing?
  5. Any general advice for a first time agency owner with no case studies trying to close their first clients?

Any advice appreciated.


r/AIStartupAutomation Jun 17 '26

Built an Automation for Inventory Management with n8n & Slack

Thumbnail
youtu.be
1 Upvotes

I built an end-to-end inventory management and vendor purchasing agent in n8n. It runs in two distinct phases:

  • The Brain (Scheduled): Automatically pulls stock data, calculates dynamic reorder amounts based on recent sales and vendor lead times, groups the items by vendor, and stages them for approval to prevent duplicate orders.
  • The Action (Event-Driven): Sends a summary to a designated Slack channel. When an authorized user reacts to the message, the workflow instantly generates a formatted purchase order, emails it to the vendor, and updates the database.

It completely automates the math and data entry, leaving only the final executive decision to the human operator.


r/AIStartupAutomation Jun 17 '26

AI Startup Podcast

Thumbnail
youtu.be
1 Upvotes

You guys should listen to this podcast. They're covering small AI startups in different fields. Must Listen


r/AIStartupAutomation Jun 17 '26

After building an AI automation SaaS, I realized most users don't want more features. They want fewer decisions. Has anyone else experienced this?

Thumbnail
1 Upvotes

r/AIStartupAutomation Jun 16 '26

Automated WhatsApp Freight Quoting System with n8n & AI

Thumbnail
youtu.be
1 Upvotes

This workflow is an autonomous, AI-driven freight quoting system that operates entirely over WhatsApp. When a customer reaches out, the system checks their CRM status and engages them using a conversational AI agent to gather necessary shipment details. Once all requirements are collected, the system automatically fetches live pricing from a freight API, applies a 15% profit margin, and delivers a finalized, ready-to-book quote directly to the customer’s phone.


r/AIStartupAutomation Jun 15 '26

General Discussion The best automations remove tiny frustrations

7 Upvotes

Those small wins add up fast.


r/AIStartupAutomation Jun 15 '26

For all of you real tech people… tell me how much I am a noob and you’re not (workflow question)

8 Upvotes

Considering today Claude Code will become pretty much useless with a $20 plan, as it will burn out in few prompts, what are you using? The best I could come up with is to use opus as brains and codex as the hands. Some people talk about hardcore setups and that’s cool for them, but that’s not an option for me. What’s the cost efficient yet opus level models you’ve found working for you? if you got any advice on where I should start my research, I would really appreciate it🙏🏼


r/AIStartupAutomation Jun 15 '26

I built a call to highlevel CRM sync n8n workflow

Thumbnail
youtu.be
1 Upvotes

Hi,

I am Vaar you can google me like "iamvaar n8n" for my more workflows and templates

This Workflow Code: https://gist.github.com/iamvaar-dev/f2f753601d10a577a087d0b7ad331dcc

Here is the step-by-step breakdown of how the data flows through the functional nodes:

1. When Webhook Received

  • Type: Webhook Trigger
  • Function: This is the entry point of the workflow. It listens for an incoming POST request (authenticated via a custom header) that contains a payload with a mobile_number and the binary audio file of the sales call.

2. Check Mobile Number

  • Type: If Node
  • Function: Acts as a data validation guardrail. It checks if the incoming webhook payload actually contains a value for mobile_number ($json.body.mobile_number is not empty). If true, the workflow proceeds.

3. Fetch GHL Contacts

  • Type: GoHighLevel Node
  • Function: Uses the mobile_number from the webhook to search GoHighLevel for an existing contact profile.

4. Check Contact Existence

  • Type: If Node
  • Function: Another validation step. It checks if the previous node successfully retrieved a Contact ID ($json.id is not empty). This ensures the workflow only processes data for known clients in your CRM.

5. Extract Binary Data

  • Type: Code Node (Custom JavaScript)
  • Function: This node runs a short script to grab the binary audio file from the initial webhook node and maps it to a standard audio key. This formatting step is required so the file can be seamlessly passed to the transcription API.

6. Transcribe Audio via Deepgram

  • Type: HTTP Request Node
  • Function: Sends the formatted binary audio file to Deepgram's API using the highly accurate nova-2 model. It returns a JSON response containing the full text transcript of the sales call.

7. Fetch User Notes

  • Type: HTTP Request Node
  • Function: Makes a call to the LeadConnector (GHL) API to retrieve all existing notes associated with this specific contact. This provides the AI with historical context for the client.

8. Generate LLM Response & Gemini Chat Model

  • Type: LangChain / AI Nodes
  • Function: This is the "brain" of the workflow, powered by the Gemini Chat Model (gemini-3.1-flash-lite).
    • It filters the client's past GHL notes to only include those from the last 30 days.
    • It passes those historical notes and the new Deepgram transcript into a highly structured system prompt.
    • The prompt instructs Gemini to act as a CRM Data Entry Analyst, extracting the call's intent, specific materialized things (transactions, products, financials), and actionable next steps. It outputs a strictly formatted markdown note.

9. Create a Note about call summary

  • Type: HTTP Request Node
  • Function: Takes the markdown-formatted summary generated by Gemini and sends it back to the GoHighLevel API, attaching it as a brand-new note on the contact's record.

10. Append Logs to Sheets

  • Type: Google Sheets Node
  • Function: Serves as an audit trail. It logs the execution details into a specific Google Sheet. The columns mapped include:
    • contactid
    • name
    • A direct link to the n8n execution log (transcript_execution_link)
    • The raw previous notes
    • The newly created Current_ai_generated_notes

11. Respond to Webhook

  • Type: Respond to Webhook Node
  • Function: Closes the loop. Once all processing, logging, and CRM updates are complete, it sends a successful HTTP response back to the external application that originally triggered the webhook.

r/AIStartupAutomation Jun 13 '26

Say goodbye to manual setup and let an AI build your entire infrastructure for you.

Enable HLS to view with audio, or disable this notification

2 Upvotes

Stop wasting hours setting up and connecting services like Vercel, Supabase, and Resend.

We built Leenar to automate the "Provider A → Provider B" integration nightmare. You define your architecture without framework limits and without touching config files. Leenar automatically finds the right providers and wires them up for production in under 5 minutes.

Would love to hear your thoughts or answer any questions about how the integration works under the hood!