Back to articles

The AI Workflow Automation Tools List

A field guide to the tools that show up in real AI workflows, organised by the job they do. Twelve layers, four starter stacks, and a way to think about your own.

T
Twegs
Notes on AI workflows, tools, and automation

A field guide to the tools that show up in real AI workflows, organised by the job they do. Written for people who want to build something, not benchmark every option.

How to read this list

Most "AI tools" lists pile everything into one long alphabetical scroll. That's not useful when you're trying to build something, because the question is never "what tools exist." It's "what do I need at this step."

A workflow is a stack of layers cooperating. Something triggers it. Something orchestrates it. An AI model does the thinking. Knowledge comes from somewhere. The result lands somewhere. And someone (or something) watches whether it's all still working.

The shape of that stack changes a lot depending on what you're building.

A content workflow might catch a Granola transcript, route it through Claude, push a draft to Notion, then nudge you on Slack. A sales workflow catches a form fill, enriches the lead in Clay, scores it, drops it in HubSpot, and sends a templated reply. An image workflow watches a folder, runs each file through a vision model and a renaming script, then re-saves it. An app or design workflow might not look like an automation at all. It's you in Cursor or Lovable, with the AI as your co-builder.

Same idea, very different shapes. So this list is organised by layer rather than by tool category, and the layers cover all of those shapes. Twelve layers. Most real workflows touch four to six. You don't need everything. You need the right thing in each slot.

Before you read on

I haven't tried every tool here. Some I use daily, some I've poked at for an afternoon, some I only know by reputation. Where I have a view, I'll say so. Where I don't, I'll just describe what the tool is for.

Prices and features move fast in this space. Treat anything specific as a starting point, not a fixed reference.

Okay. The layers.


1. Orchestration

🎯 The job: decide what happens when. The conductor of the whole stack.

This is the layer that connects everything else. A new lead arrives in HubSpot, the orchestrator catches it, sends the details to a model for enrichment, and pushes the result back into the CRM. A meeting ends in Granola, the orchestrator picks up the transcript, drafts action items, and puts them in your task tracker. A new product photo lands in Drive, the orchestrator runs it through a vision model and renames the file based on what's in the picture.

For most workflows, this is the first decision and the most important one. Almost every other tool in your stack will be wired through whatever you pick here.

An exception worth flagging

For some workflow types, especially app building and design, the "orchestration" is actually a single product. Lovable, Cursor, or v0 is your orchestration layer when you're using them to build software. You're not wiring tools together. You're co-building with an AI inside one surface. Worth knowing before you reach for Make.com for everything.

No-code visual builders

Drag boxes around on a canvas. Easiest to start with, hardest to scale once your workflows get complex.

ToolBest forWatch out for
ZapierTotal beginnersPricing (per task) gets painful fast
MakeNon-tech builders who'll growSlight learning curve vs Zapier
IFTTTPersonal "save X to Y" stuffNot really an AI tool
Power AutomateMicrosoft-365 shopsLocked to that ecosystem
Workato / TrayEnterprise teamsSales-call energy
BardeenBrowser-heavy workflowsMore extension than platform

Low-code and self-hostable

Build visually, drop into code when you need to.

  • n8n. The one most builders end up on once they've outgrown Zapier or Make. Cloud or self-hosted, strong AI nodes, huge community. Steeper curve, much higher ceiling.
  • Activepieces. Open-source alternative to Zapier. Younger, moving fast.
  • Windmill. Closer to a developer tool, but worth knowing if you write any code.

Code-first

For developers, or if you're working with one.

  • Inngest and Trigger.dev for modern event-driven AI workflows.
  • Temporal, Prefect, Dagster for heavier workflow engines (often data-pipeline land).
  • Airflow. Still everywhere, still useful, also showing its age.

AI-native orchestration and agent frameworks

Designed specifically for AI workflows where models loop, reason, and call tools.

  • LangChain / LangGraph. Most established. Powerful but opinionated.
  • LlamaIndex. Started as RAG, expanded into orchestration.
  • CrewAI / AutoGen. Multi-agent systems where several AI workers collaborate.
  • Flowise / Langflow / Dify. Visual builders for AI agents.
  • Vellum / Relevance AI. More product-y, with built-in evaluation.
  • Lindy. End-user product: describe what you want, it builds the agent.
My honest take

If you're new to all this, don't start with an agent framework. Start with n8n or Make and learn how workflows actually behave before adding the complexity of an agent making decisions for you.


2. The AI model

🧠 The job: the brain of the workflow. Reads, drafts, classifies, summarises, sees, codes, decides.

Too many models to pick the "right" one in isolation. The better question is: which one for which job. A model that's great at carefully drafting a customer email may be overkill for classifying 10,000 support tickets. A model that's brilliant at code can be wrong for reading screenshots.

Frontier proprietary models

The most capable, most expensive, most locked-in options.

ModelBest atUse it for
Claude (Anthropic)Writing quality, long context, careful reasoning, code refactoringArticles, emails, agents that need to think before acting, large codebases, coding agents like Claude Code and Cursor
GPT / o-series (OpenAI)Broad capability, mature tool ecosystem, image generation built inGeneral-purpose default, structured outputs, image generation inside chat, o-series for hard reasoning problems
Gemini (Google)Multimodal (image, video, audio in and out), huge context window, low cost at Flash tierReading screenshots and PDFs, transcribing or summarising video, high-volume classification, processing a lot for cheap
Grok (xAI)Real-time knowledge from X, willingness to take a positionNews-flavoured tasks, content with a current-events angle
MistralEuropean hosting, strong open models, good code modelsEU data-residency needs, self-hosted setups, Codestral for coding
CohereEmbeddings and rerank, enterprise RAGBuilding search and knowledge systems inside companies
Sonar (Perplexity)Web search baked into the modelAnswers grounded in current web sources
These are the engine, not the car

Most "AI for web design" or "AI for coding" tools (Lovable, Cursor, v0, Claude Code) are using these same models underneath. The model is the engine. The product wrapped around it is the car. When picking a builder tool, you're picking the car. When picking what powers a custom workflow, you're picking the engine.

Open-weight models you can run yourself

Free to download, not free to run if you're paying for GPUs.

  • Meta Llama, DeepSeek, Qwen (Alibaba), and Mistral's open models for capability.
  • Microsoft Phi and Google Gemma for small and fast.
You probably don't need to self-host

Most non-technical builders don't. The hassle outweighs the savings until you're at significant volume.

Model routers and gateways

Sit between your workflow and the actual model providers. One API key, every model.

  • OpenRouter. Most popular. One API, swap models with one line.
  • LiteLLM. Open-source equivalent.
  • Portkey and Helicone. Routing plus observability and cost tracking.
  • Cloudflare AI Gateway. Free at the base tier.
  • Together AI, Fireworks AI, Replicate, Groq, Anyscale. Hosts for open-weight models. Groq is the speed specialist.

Specialised models

For the things that aren't text.

  • ElevenLabs — voice generation
  • Deepgram / AssemblyAI / Whisper — transcription
  • Stability AI / Black Forest Labs / Ideogram — images
  • Runway / Luma / Kling — video
  • Suno / Udio — music
  • Speechmatics — high-accuracy speech

In a real workflow, you'll often use a router to pick the right model per task. Cheap one for classification. Stronger one for customer-facing writing. Vision model for screenshots. Image model for assets.


3. Knowledge and memory

📚 The job: give the model context it doesn't have. Your inbox, your docs, your product catalog, your company wiki, your design system.

Knowledge isn't just text. A sales workflow needs the lead's history. A support workflow needs the product manual. A design workflow needs the brand style guide. A code workflow needs the codebase. This layer is how each of those gets to the model.

Vector databases

Search by meaning, not exact words. Useful when you want the model to find the right context for a question or task.

  • Pinecone. Most established, fully managed, easy to start.
  • Weaviate / Qdrant / Milvus. Strong open-source, also hosted.
  • Chroma. Most beginner-friendly. Prototyping favourite.
  • pgvector. Postgres extension. Good if you already use Postgres.
  • Turbopuffer / LanceDB. Newer, fast, gaining ground.

RAG frameworks

Help you build the system that takes a question, fetches relevant info, feeds it to a model.

  • LlamaIndex. Most focused on RAG.
  • LangChain / Haystack. More general-purpose.
  • Vectara. Managed RAG product.
  • Cohere Rerank / Voyage AI. Specialised models for the rerank step (where most RAG systems get good or stay mediocre).

Document parsing and ingestion

Clean text out of messy PDFs, slides, contracts, invoices, receipts.

  • Unstructured.io. Go-to open-source library.
  • LlamaParse. Paid, very good with complex PDFs.
  • Reducto / Docling. Strong table extraction.
  • Mistral OCR. Specialised document model.
  • AWS Textract / Google Document AI. Cloud-provider options.

Web data and scraping

When the knowledge lives on the open web. Useful for competitor research, lead enrichment, content briefs, market analysis.

  • Firecrawl. AI-flavoured scraper of choice right now.
  • Apify. Marketplace of scrapers for specific sites.
  • Browse AI / Bright Data. More business-y.
  • ScrapingBee / Diffbot. Headless-browser problem.
  • Exa / Tavily. Search APIs designed for AI agents.
  • SerpAPI. Classic Google-results option.

4. Agentic and browser automation

🤖 The job: let the AI use software the way a human would. For when there's no API and you'd otherwise be doing it by hand.

This is the layer doing dramatic things on Twitter. Most of it is also genuinely useful, particularly for sales research, competitor monitoring, and pulling data out of legacy tools that don't have proper APIs.

Browser agents

Open a browser, navigate, fill forms, click buttons. Useful for scraping behind logins, automating data entry, and any web task where there's no API.

  • Browserbase. Cloud browser infrastructure for agents.
  • Browser Use / Stagehand. Open-source frameworks on top of browser automation.
  • Playwright. The underlying primitive.
  • Computer Use (Anthropic) / Operator (OpenAI). Model-provider entries.
  • Skyvern / Multi-on. Independent options.

Computer-use agents

Drive your full desktop, not just a browser. Still experimental. Useful when the workflow has to use a desktop app with no web or API equivalent.

Vertical agents

Pre-built agents for specific jobs. You don't build the workflow; you configure the agent.

  • Lindy — generalist personal assistant
  • Decagon / Sierra — customer experience
  • 11x — sales
  • Clay — sales enrichment (agent-flavoured)
  • Harvey — legal
  • Hebbia — research-heavy enterprise

5. Voice and conversational AI

🎙️ The job: real-time voice, transcription, call intelligence. The layer where AI talks and listens.

Voice agent platforms

Build something that can have a real-time voice conversation with a human. Useful for inbound call handling, booking flows, customer triage.

  • Vapi / Retell AI / Bland AI. The three most-discussed. Different strengths around latency, voice quality, model support.
  • ElevenLabs Conversational AI. Entry from the leading voice-model maker.
  • Synthflow / Air.ai / PolyAI. Also worth a look.

Telephony plumbing

Twilio is the default. Telnyx is the challenger. LiveKit is the modern WebRTC-flavoured option a lot of voice agent platforms use under the hood.

Meeting and call intelligence

Record, transcribe, summarise, push action items.

  • Granola. The one I use, the one most builders I know prefer. Clean output, smart with notes you take alongside the transcript.
  • Otter. Longest-running and most general-purpose.
  • Fireflies / Fathom. Strong on integrations.
  • Read. More analytics-flavoured.
  • Gong / Chorus. Sales-specific, built for revenue teams.
Start here if you haven't yet

If you build workflows for a living and you're not capturing your meetings, this is the most common workflow trigger people don't realise they have. Granola for a week and you'll see what I mean.


6. Workflow surfaces

💻 The job: the interface where you actually meet the workflow.

Some workflows run silently in the background. Others happen right in front of you, in a tool you're actively using. This layer is the second kind.

Chat interfaces

The frontline of most people's AI usage.

Claude, ChatGPT, Gemini, Perplexity, Le Chat, Grok. Same shape, different strengths. Poe aggregates many in one place.

IDE-style AI for builders

Where coding workflows happen. The AI is sitting in your editor, reading your codebase, making suggestions, writing changes.

  • Cursor. Leading AI-first code editor.
  • Claude Code / Windsurf. Strong alternatives.
  • GitHub Copilot. Most widely deployed.
  • Cline / Aider / Continue. Open-source options.

Document and writing surfaces

Where content workflows live.

  • Notion AI. Built into the most popular knowledge tool.
  • Google Docs. Now has Gemini embedded.
  • Coda AI. Same idea, Coda flavour.
  • Mem / Reflect. Personal knowledge management with AI baked in.

Spreadsheet and data

Where data workflows live for most non-developers. Classification, enrichment, summarisation in cells.

  • Claude in Excel. Official Anthropic entry.
  • Numerous / Equals. Spreadsheet-shaped AI products.
  • Rows / Bricks. Full spreadsheet apps with AI features.

Design and creative surfaces

Where design workflows happen. The AI is inside the canvas.

  • Figma AI. Built into the design tool most teams already use.
  • Framer. Strong AI for landing pages and marketing sites.
  • Photoshop / Adobe Firefly. Generative fill, expand, edit.
  • Canva Magic Studio. The non-designer option.
  • Krea. Real-time generation and design tooling.

App builders

You describe what you want. It builds the app or workflow.

  • Lovable. Currently buzziest, particularly in Europe.
  • Bolt.new / v0. Strong alternatives.
  • Replit Agent / Base44. Round out the list.
  • Agent modes of Cursor and Windsurf also count.

These blur the line between "writing software" and "building a workflow." For non-technical builders, often the first place to try if your workflow idea looks more like an app than an automation.


7. Triggers and inputs

The job: what sets the workflow off. Mostly tools you already have.

TypeTools
EmailGmail, Outlook
CalendarGoogle Calendar, Outlook, Cal.com
FormsTally, Typeform, Fillout
ChatSlack, Discord, Teams
CRMHubSpot, Salesforce, Attio, Pipedrive, Folk
HelpdeskIntercom, Zendesk, Front
StorageDrive, Dropbox, Notion, OneDrive
WebhooksHookdeck, Svix
Schedulerscron, GitHub Actions, Google Cloud Scheduler
Voice / callsGranola, Fathom, Twilio (phone events)
E-commerceShopify, Stripe, WooCommerce
SocialMentions in Slack, new posts, social listening tools

The trigger isn't usually a tool you pick. It's a tool you already have. The decision is which existing tool you let act as the kickoff.


8. Actions and destinations

📤 The job: where the workflow puts the result.

TypeTools
CRMsSame list as triggers
Task trackersLinear, Asana, ClickUp, Notion, Monday, Trello
DatabasesAirtable, Notion DBs, Postgres, Supabase, MongoDB, Baserow, NocoDB
CommsSlack, email, SMS (Twilio)
PublishingWebflow, WordPress, Ghost, Wix, Buffer, Typefully
E-commerceShopify, Stripe
File destinationsDrive, Dropbox, S3
Design assetsFigma files, image folders, brand asset libraries
CodeGitHub PRs, Linear issues, Slack threads

Again, mostly tools you already have. The orchestration layer is what makes one talk to another.


9. Observability and operations

🔍 The job: the unglamorous layer that decides whether your workflow survives contact with the real world.

A workflow that misclassifies one lead a month is fine. The same workflow misclassifying 30% of leads is a disaster you didn't know about. This layer is how you tell the difference.

LLM observability and evals

Watch what your AI is doing. Log inputs and outputs. Check whether it's still working well.

  • Langfuse. Most popular open-source option.
  • LangSmith. LangChain-flavoured equivalent.
  • Helicone. Observability plus model routing.
  • Arize / Braintrust / Humanloop / PromptLayer. Different angles: heavier-duty, eval-focused, product-oriented, prompt-management-first.
  • Weave (Weights & Biases), Phoenix (open-source Arize), Patronus. Round out the list.

Workflow monitoring

Dashboards inside n8n, Make, and Zapier handle most of this. Better Stack and Checkly are generic uptime tools that catch things the workflow tools miss.

Cost monitoring

Vantage and OpenMeter for usage tracking. Most model routers (OpenRouter, Portkey, Helicone) include cost dashboards too.

Set up cost monitoring before you need it

If you're running anything that costs more than a few dollars a month in API calls, set up a cost dashboard. It's the difference between "I have a workflow" and "I have a $400 surprise bill." Especially true for image and video generation, where costs jump fast.


10. Identity, auth, and human-in-the-loop

🔐 The job: who is allowed to do what, and when to stop and ask a human.

  • Clerk / WorkOS / Auth0. User authentication.
  • Composio / Arcade. Auth specifically for AI agents acting on behalf of users in third-party tools.
  • Pipedream Connect. Managed auth for workflows.
  • HumanLayer. Explicitly built around the "ask a human before doing this" pattern.

Slack and email also work as human-in-the-loop approval surfaces. The workflow pings you. You reply. The workflow continues.

This layer feels boring until your workflow tries to do something it shouldn't. Then it's the most important layer you have. Particularly important for sales (avoid sending to the wrong person) and support (don't refund the wrong customer).


11. Compute and deployment

⚙️ The job: where the workflow code actually runs.

Serverless

Spin up only when needed. Good default for workflows because most are bursty.

  • Vercel / Cloudflare Workers / AWS Lambda. Heavyweights.
  • Modal / Beam. Designed for AI workloads.
  • Replicate. Easiest way to run open-weight model inference.
  • Val Town. Fun, friendly option for small scripts.

Container and app platforms

For workflows that need to run longer or hold more state.

  • Fly.io / Railway / Render. Modern, developer-friendly.
  • Heroku. The classic.
  • Google Cloud Run. GCP entry.

Self-hosting for open-source

Running n8n, Langfuse, Activepieces yourself.

  • Docker. Universal starting point.
  • Coolify / Dokploy. Open-source dashboards that make self-hosting much easier.
The honest answer

For non-technical builders: don't host anything yourself. The hosted versions exist for a reason.


12. Adjacent categories

🧩 The job: not strictly "workflow" tools, but they show up in almost every real AI stack.

  • Data warehouses and ETL. Snowflake, BigQuery, Databricks. Plus Fivetran, Airbyte, dbt.
  • Reverse ETL. Hightouch, Census.
  • Customer data platforms. Segment, RudderStack, June.
  • Feature flags. Statsig, LaunchDarkly, PostHog.
  • Analytics. PostHog, Amplitude, Mixpanel.

For most solo builders and small teams, you don't need any of these. They become relevant once a workflow is generating data you want to analyse, segment, or operationalise across a wider customer base.


What to actually do with this list

Twelve layers. Hundreds of tools. The temptation is to feel overwhelmed and abandon the project. Don't.

The way most working stacks look is:

  • One orchestration tool (or one app builder, depending on what you're making)
  • One or two AI models accessed through one router
  • One knowledge layer if you need it
  • The SaaS you already use as triggers and destinations
  • One observability tool, once you have anything running in production

That's five to seven tools for most people. The other 95% of this list is variation, specialisation, or alternatives.

Below are four starter stacks for the most common builder profiles. Pick the one closest to what you're doing.

If you're a content builder

Newsletters, blog posts, social, content ops.

  • Capture: Granola (meetings), Readwise (highlights), Drive (files)
  • Orchestration: Make or n8n
  • Model gateway: OpenRouter, with Claude as your default and Gemini Flash for cheap bulk work
  • Publishing: whatever you already use (Ghost, Wix, Substack, LinkedIn, Typefully)
  • Add later: Langfuse if you're shipping a content product, not just personal posts
If you're a sales or CRM builder

Lead enrichment, outreach, deal tracking, prospecting.

  • Trigger: form fills, LinkedIn events, calendar bookings
  • Enrichment: Clay (the most opinionated single tool here)
  • Orchestration: Make or n8n alongside Clay
  • Model gateway: OpenRouter, with Claude for outreach drafts and Gemini Flash for scoring
  • Destination: HubSpot, Attio, or whatever CRM you already use
  • Add later: voice agents (Vapi, Retell) for outbound calling once the rest is working
If you're a design or app builder

Landing pages, internal tools, prototypes, marketing sites.

  • Main surface: Lovable, Bolt, v0, or Cursor (this is your orchestration)
  • Model: whatever the tool defaults to (mostly Claude or GPT under the hood)
  • Image and asset generation: GPT image gen, Ideogram, Black Forest Labs (Flux)
  • Design tool: Figma, with Figma AI for the AI-assisted bits
  • Add later: a real orchestration layer (n8n, Make) when your "app" starts needing scheduled jobs or external triggers
If you're a voice or service builder

Inbound calls, support, booking, customer triage.

  • Voice platform: Vapi or Retell AI
  • Telephony: Twilio (or built-in via the voice platform)
  • Orchestration: the platform itself, or n8n for anything more complex
  • Model gateway: OpenRouter, mostly to keep options open as voice latency improves
  • Knowledge: a RAG setup (Vectara or LlamaIndex) for the FAQ or product info the agent answers from
  • Add later: Granola or Gong for analysing the calls afterwards

The biggest mistake

It isn't picking the wrong tool. It's picking too many tools, before you know what the workflow actually needs to do. Build the workflow with the cheapest viable stack, then upgrade individual pieces when you can name the reason.

That's the list.

TWEGS · Notes on workflows, tools, and automation