Build Log

Systems you can steal.

Step-by-step workflows, automation strategies, and lessons from building lean AI systems in public.

$ open blog/

tutorials.md workflows.md ai-agents.md

$ filter useful

ok read, ship, adapt.

n8n AI Agent vs Zapier AI Actions

n8n AI Agent vs Zapier AI Actions

Quick answer: Use Zapier when you want the fastest simple automation between popular apps. Use n8n when you need a real AI agent workflow: tools, structured output, branching, retries, self-hosting, and deeper control. For Ship Lean-style systems, Zapier is a shortcut. n8n is the runner layer. If you are new to the concept, start with what an n8n AI agent is. If you already know you want n8n, use the n8n AI Agent Workflow Builder. Quick ComparisonQuestion n8n AI Agent Zapier AI ActionsBest for Custom AI workflows with tools Fast app-to-app AI actionsBuilder type Technical solo builder, operator, team Nontechnical operator, speed-first builderAgent depth Stronger for tool-using workflows Better for simple AI-assisted actionsHosting Cloud or self-hosted CloudWorkflow control High MediumDebugging Node-level runs and logs Simpler task historyBest first use Agentic routing, enrichment, approval Simple summaries, drafts, app updatesThis is not a moral decision. It is an architecture decision. What n8n Does Better n8n is stronger when the workflow has real logic:the agent needs to choose between tools the output needs a structured schema you need custom code in the middle you want to self-host the workflow needs approvals before publishing the run history matters because this is becoming an operating systemThat makes n8n a better fit for durable AI workflows. For example, a Search Console workflow might:Pull query/page data. Ask an AI Agent node to classify the opportunity. Use a tool to inspect the current page. Return structured fields: refresh, build, or ignore. Create a draft task. Ask for human approval before publishing.That is more than "summarize this row." It is a small operating loop. What Zapier Does Better Zapier is stronger when speed and app coverage matter more than control. Good Zapier use cases:summarize a form submission draft a Slack reply move a lead into a CRM create a simple email draft connect two common SaaS tools quicklyIf the workflow is simple, Zapier may be the better first move. The fastest useful automation often wins. The Hidden Question: Do You Need an Agent? Most workflows do not need an agent. Use simple automation when the rule is clear:Task UseNew form submission goes to CRM Simple automationNew meeting gets a Slack reminder Simple automationSupport message needs urgency classification AI stepSearch query needs refresh/build/ignore judgment AI agentPublic content needs approval AI agent plus human reviewIf the workflow is just moving data, do not make it agentic. If the workflow needs judgment, tools, and routing, n8n gets more interesting. The Ship Lean Pick For a solo builder trying to grow organic traffic, I would use:Codex or Claude Code to build and refresh pages n8n to pull recurring signals, route tasks, and manage approvals Zapier only when a simple SaaS handoff is faster than building a custom n8n workflowThat keeps the core system owned by you while still allowing shortcuts when they are actually shortcuts. When I Would Choose Each Choose Zapier if:you need a working automation today the workflow has two or three simple steps you do not care about self-hosting you do not need custom agent toolsChoose n8n if:you are building an AI agent workflow you need structured output and branching you want lower-level control you want self-hosting or deeper data ownership you want the workflow to become part of your operating systemFor deeper n8n patterns, read the n8n AI Agent Tutorial and n8n AI agent vs workflow automation.

AI Coding Agent vs Workflow Automation

AI Coding Agent vs Workflow Automation

Quick answer: An AI coding agent builds and changes the system. Workflow automation runs the system. If you mix those jobs up, you either get a fragile script pretending to be operations or a giant canvas pretending to be a developer. For Ship Lean, the clean split is:Claude Code or Codex builds. n8n runs. Human approves.That rule is the center of the n8n AI Agents hub. The Actual DifferenceLayer AI coding agent Workflow automationPrimary job Build, edit, reason, test Trigger, route, retry, logBest context Repo files, docs, diffs, terminal output App data, schedules, webhooks, credentialsOutput Code, content, config, PR-ready changes Runs, records, notifications, approvalsFailure mode Bad edit or bad assumption Broken credential, bad input, failed nodeBest tools Codex, Claude Code, Cursor n8n, Make, ZapierAn AI coding agent is closer to a builder. Workflow automation is closer to an operations layer. Why This Matters for Organic Traffic Modern SEO is not "write 50 posts and hope." The better system is:Pull real demand signals from Search Console. Identify pages Google is already testing. Refresh the page with clearer answers, schema, internal links, and proof. Build a tool, workflow, or comparison page when the query deserves it. Route the work through human approval. Measure again.That system needs both layers. n8n can pull the data and create the weekly queue. Codex can read the page, update the repo, run the build, and verify the result. A human still approves the strategic claim. When to Use an AI Coding Agent Use an AI coding agent when the task asks for judgment across files:update title and description without breaking the site add FAQ schema through the existing content system compare two local pages and avoid duplication build a small tool or calculator fix a failed build turn a strategy doc into site changesThis is not just "generate text." It is editing inside a real system. When to Use Workflow Automation Use workflow automation when the task needs to happen on a trigger:every week, pull GSC data when a new page ships, add it to a promotion queue when a task is approved, send the next notification when a workflow fails, alert the owner when a form arrives, enrich and route itThis is not just "connect apps." It is making the repeatable parts visible and reliable. The Mistake: Making One Tool Do Both Jobs Bad setup:Mistake What happensPut all strategy and writing inside n8n prompts Hard to version, review, test, and improveUse a coding agent as a permanent scheduler Weak run history, weak credential handling, fragile recurrenceLet automation publish directly Fast mistakes with public consequencesAdd agents to every workflow Higher cost, slower runs, harder debuggingThe point is not to be maximalist. The point is to give each tool the job it can do cleanly. The Ship Lean Pattern For a solo builder, the working pattern looks like this:Stage Owner ExampleSignal n8n Pull Search Console and analytics dataJudgment Codex or Claude Code Decide whether to refresh, build, or ignoreBuild Codex or Claude Code Edit content, code, schema, and linksApproval Human Confirm voice, risk, and business priorityDistribution n8n Route to GitHub, newsletter, social, or communityThat is how you turn AEO from a vague idea into a weekly operating system. Simple Decision Rule Ask: "Does this need project context or a repeatable trigger?" If it needs project context, use an AI coding agent. If it needs a repeatable trigger, use workflow automation. If it needs both, connect them and add human approval before anything public ships. Next, compare the two concrete tools: Codex vs n8n. If your workflow needs an agent step, read the n8n AI Agent Tutorial.

Codex vs n8n: Which One Should Run Your AI Workflow?

Codex vs n8n: Which One Should Run Your AI Workflow?

Quick answer: Use Codex when the work lives in a repo and needs judgment, editing, tests, or codebase context. Use n8n when the work needs a trigger, credentials, retries, run history, and repeatable automation. The Ship Lean rule is simple: Codex builds. n8n runs. Human approves. Start with the n8n AI Agents hub if you want the whole system. If the workflow specifically needs an n8n agent, use the n8n AI Agent Workflow Builder before touching the canvas. The Difference in One TableQuestion Codex n8nCan it read and edit repo files? Best WeakCan it run tests and inspect diffs? Best WeakCan it trigger from forms, webhooks, schedules, and apps? Possible BestCan it manage app credentials cleanly? Not the job BestCan it retry failed workflow steps? Possible with scripts BestCan it show run history? Not the job BestCan it draft, refactor, and QA content/code? Best Needs LLM nodesCan it route human approvals? Possible BestThis is why the comparison is not "which tool is smarter?" It is "which tool owns which layer?" Use Codex for Builder Work Codex is the better choice when the work requires context from your project:refreshing a blog article against Search Console evidence adding schema, metadata, internal links, or page sections building a new calculator, tool, or workflow page reading existing files before making a change running a build and fixing failures turning a messy idea into a concrete implementationThat is builder work. It benefits from repo context and judgment. If you try to force that whole process into n8n, the canvas gets crowded fast. Prompts, examples, brand rules, page templates, and QA checks belong in files where a coding agent can inspect and update them. Use n8n for Runner Work n8n is the better choice when the work needs to happen repeatedly:every Monday, pull Search Console data when a form is submitted, enrich the lead when a video is uploaded, create repurposing tasks when a page draft is ready, notify the human reviewer when approval is granted, send the next step to GitHub, Slack, Notion, or emailn8n is strongest as the workflow layer because it handles boring operational details: triggers, credentials, retries, node-level debugging, and run history. That boring part is the part that keeps systems alive. The Best Pattern: Codex Plus n8n For organic traffic, the useful system looks like this:Step Owner Job1 n8n Pull Search Console query/page data2 n8n Filter for impressions, weak CTR, and low position3 Codex Read the target page and refresh it4 Codex Run build, SEO QA, and link checks5 Human Approve the point of view6 n8n/GitHub/Vercel Route deployment and notifyThat is the arbitrage: n8n finds and routes repeatable signals. Codex turns the signal into a useful asset. When Codex Alone Is Enough Use Codex alone when the task is one-time or repo-bound:"refresh this tutorial" "add a hub page" "fix this favicon" "build a comparison page" "run the local build"No workflow runner needed. The value is in the edit. When n8n Alone Is Enough Use n8n alone when the rules are clear:copy a form submission into a CRM send a Slack notification after a status change save an RSS item to a database send a weekly report route approved data between appsNo coding agent needed. The value is in the repeatable run. When You Need Both Use both when the workflow has a repeatable trigger but the output needs judgment. Good examples:Search Console opportunity scoring weekly content refresh queue transcript-to-blog draft routing lead triage with human approval workflow JSON review before importThe model should not publish directly. It should prepare the work, show evidence, and ask for approval when the output touches the public site, customers, money, or production. My Default Rule If the problem is "build the system," use Codex. If the problem is "run the system every week," use n8n. If the problem is "use real signals to ship useful assets repeatedly," use both. Next, read AI coding agent vs workflow automation, then map the runner side with the n8n AI agent workflow example.

Claude Code vs n8n for Solo Builders

Claude Code vs n8n for Solo Builders

Claude Code and n8n are not replacements for each other. They are two layers of a solo-builder operating system.Layer Tool JobBuild and judgment Claude Code Read context, edit files, draft, review, implementTrigger and routing n8n Detect events, gather inputs, retry, notify, routeApproval Human Protect quality, voice, brand, money, productionIf your workflow needs repo context, use Claude Code. If your workflow needs a recurring trigger, use n8n. If your workflow needs both, use both. Why solo builders confuse them Both can touch AI. Claude Code can run commands and make changes. n8n can call an LLM. So it is tempting to ask, "Which one should run the business?" Wrong question. The better question is: Which part of the workflow needs judgment, and which part needs reliability? Claude Code is for judgment. n8n is for reliability. A practical example Say you want to turn a Search Console export into a new search asset. n8n should:detect the export save the file notify the system route the final outputClaude Code should:read the repo score opportunities create or update the page add internal links run the buildYou should:approve before publishingThat is the Ship Lean pattern. Start with the planner Before building, use the Claude Code + n8n Workflow Planner. If the workflow is agent-heavy, use the n8n AI Agent Workflow Builder. If you are building the full workflow stack, start with the n8n AI Agents hub. The rule is simple: Claude Code builds, n8n runs, a human approves. FAQ Should solo builders use Claude Code or n8n? Use Claude Code for codebase work, repo context, writing, and judgment. Use n8n for triggers, routing, integrations, retries, and schedules. Can Claude Code and n8n work together? Yes. n8n can detect the event and gather inputs; Claude Code can create the draft, plan, script, or diff; then n8n can route it for approval.

n8n vs Make for AI Agent Workflows

n8n vs Make for AI Agent Workflows

For AI agent workflows, I would usually pick n8n over Make. Not because Make is bad. Make is clean, visual, and easier for a lot of app-to-app automations. But for the technical or technical-adjacent solo builder, n8n has the better shape:Need PickEasiest visual app automation MakeSelf-hosting and control n8nCode nodes and custom logic n8nAI agent workflows with tools n8nSimple marketing ops workflows Make or n8nLower marginal cost at scale n8n self-hostedWhere Make wins Make is good when the workflow is visual and app-heavy. Use it when:you want the easiest builder you are connecting common SaaS apps the workflow is not deeply technical you do not care about self-hosting you want a polished visual interfaceIf the goal is "move this from app A to app B with some formatting," Make is fine. Where n8n wins n8n is stronger when you want control. Use it when:the workflow needs code you want self-hosting you care about cost at scale you need custom API calls you want agent tools and more flexible logic you are comfortable debuggingThat last point matters. n8n is not always easier. It is more flexible. The AI agent workflow angle AI agent workflows tend to need:context gathering tool access memory/history conditionals retries logging approval steps custom actionsn8n fits that shape well. Make can do plenty, but n8n feels more natural when the workflow starts drifting from "connect apps" into "build an operating system." My recommendation If you are a solo builder using Claude Code, GitHub, Vercel, APIs, and custom workflows, start with n8n. If you are a non-technical operator who wants polished app automation fast, start with Make. If you already have Make working, do not migrate for sport. Move only when you hit control, cost, or flexibility limits. Build your first n8n agent map with the n8n AI Agent Workflow Builder. FAQ Is n8n or Make better for AI agent workflows? n8n is usually better for technical solo builders who want control, code nodes, self-hosting, and agent-style workflows. Make is easier for visual app automation. Should solo builders start with n8n or Make? Start with Make if you want the easiest visual builder. Start with n8n if you want more control and expect to build AI agent workflows.

n8n AI Agent vs Workflow Automation

n8n AI Agent vs Workflow Automation

Use normal workflow automation when the rules are clear. Use an n8n AI agent when one step needs judgment. That is the whole decision.Situation UseCopy data from form to CRM Normal workflowSend Slack alert after status changes Normal workflowClassify messy customer messages AI agentScore Search Console queries for content ideas AI agentDraft a newsletter from a build log AI agent plus approvalPublish automatically to production Probably notWorkflow automation is for known steps Normal automation is best when you can describe the rule clearly:when this happens, do that if status is approved, send email every Monday, pull this report when form submits, create taskYou do not need an AI agent for that. Adding one usually makes the workflow slower, harder to debug, and more expensive. AI agents are for fuzzy steps Use an agent when the workflow needs to interpret something:Is this lead qualified? Is this query worth a page? Does this transcript contain a strong proof moment? Is this support message urgent? Should this draft be published, revised, or killed?That is not a simple if/then branch. That is judgment. The clean hybrid pattern The best setup is usually both:n8n triggers the workflow. n8n gathers data. The agent handles the fuzzy decision. n8n routes the result. A human approves high-risk output.That gives you automation without pretending the agent should own the whole process. Use the Claude Code + n8n Workflow Planner to split the work before building. If you're choosing between a coding agent and a workflow runner, read AI coding agent vs workflow automation. What solo builders should build first Start with a workflow where bad output is annoying, not catastrophic. Good:content idea scoring transcript repurposing newsletter draft creation lead triage draft workflow planningBad:customer refunds publishing without review deleting production data sending sales emails with no approvalThe goal is not to make the agent powerful. The goal is to make it useful and bounded. FAQ What is the difference between an n8n AI agent and workflow automation? Workflow automation follows known rules. An n8n AI agent handles the judgment step inside a workflow. Should every n8n workflow use an AI agent? No. Use normal automation when the steps are clear and rule-based. Add an agent only when the workflow needs reasoning.

What Is an n8n AI Agent?

What Is an n8n AI Agent?

An n8n AI agent is a workflow step that uses an LLM plus tools to make decisions inside an automation. The short version:Part Jobn8n Trigger, gather data, route output, retry failuresAI agent Read context, decide, draft, classify, score, or planTools Let the agent check data or take actionHuman approval Protect anything public, expensive, or brand-sensitiveThe mistake is thinking the AI Agent node is magic by itself. It is not. The node becomes useful when it has a clear job, enough context, and access to the right tools. The plain-English version Think of n8n as the operations desk. It knows when something happened. A form came in. A video published. A Search Console export landed. A Notion status changed. The AI agent is the person at the desk who can read the packet and make a call. Should this lead go to sales? Should this query become a tool page? Should this transcript become a newsletter? Is this task worth automating? That decision is the agent's job. The routing, logging, retries, and notifications are n8n's job. What makes it agentic? An agentic workflow has more than a prompt. It has:a trigger context a decision tools or actions memory or history when needed a clear output an approval gate when consequences existWithout tools or actions, the agent is usually just an LLM response inside a workflow. That can still be useful. But it is not the same as an agent that checks, decides, and routes. A simple n8n AI agent workflow Here is the pattern I would start with:n8n detects a new input. n8n gathers the context. The agent makes one specific decision. n8n saves the decision. A human approves if needed. n8n routes the output.Use the n8n AI Agent Workflow Builder to map that before you build. For the full Ship Lean path, use the n8n AI Agents hub. It connects this definition to the workflow pattern, builder tool, and Claude Code/n8n handoff. Good first use cases For solo builders, good use cases are boring:score Search Console queries classify inbound leads turn a build log into a newsletter draft summarize support requests route content ideas check if a workflow is worth automatingBad first use case: "run my whole business." Start with one judgment step. n8n AI agent vs Claude Code n8n AI agents are good inside recurring workflows. Claude Code is better when the task needs repo context, file edits, code changes, or a real implementation pass. Use both when the workflow needs a trigger and a code-aware operator:n8n detects and gathers Claude Code edits or drafts human approves n8n routesRead the full decision rule in Claude Code vs n8n. FAQ What is an n8n AI agent? An n8n AI agent is an automation step that uses an LLM plus tools to reason over context and take actions inside a workflow. Is the n8n AI Agent node agentic by itself? Not really. It becomes agentic when it can use tools, check context, make decisions, and route work instead of only generating text. When should solo builders use an n8n AI agent? Use it when one repeatable workflow needs judgment, classification, drafting, scoring, or routing.

Best AI Stack for Solo Founders: The Lean Version

Best AI Stack for Solo Founders: The Lean Version

The best AI stack for solo founders is not the biggest stack. It is the smallest stack that helps you build, remember, automate, and publish without turning your business into a SaaS subscription museum. For most solo builders, that means four layers:Layer Tool JobBuild layer Claude Code Write code, inspect repos, create agents, ship pagesAutomation layer n8n Move data between tools, run repeatable workflows, trigger approvalsMemory layer Obsidian or Notion Store decisions, prompts, workflow notes, content ideasDistribution layer Astro, MailerLite, YouTube, X Turn build proof into searchable and social assetsHere is the move: pick one tool per job, then connect those tools around a weekly shipping rhythm. The lean stack I would start with Start with Claude Code, self-hosted n8n, Obsidian, MailerLite, and a simple Astro site. That stack gives you:one place to build one place to automate one place to remember one place to publish one owned email channelYou can add tools later. But if you cannot explain what a tool does for revenue, distribution, or saved hours, it probably does not belong in the stack yet. The stack should answer four boring questions Before you add a tool, ask what question it answers:Question Tool layer Good answerWhat am I building? Build Claude Code can inspect the repo and make the changeWhat needs to happen again? Automation n8n can trigger, route, retry, and log the workflowWhat did I already learn? Memory Obsidian or Notion stores decisions and reusable promptsHow does this become trust? Distribution The site, email list, and social channels turn proof publicMost solo founders do this backward. They start with "what tool is hot?" and end up with seven disconnected dashboards. Start with the work instead. Claude Code is the build layer ChatGPT is useful for thinking. Claude Code is useful for operating inside a codebase. For solo builders, that distinction matters. Claude Code can inspect files, update pages, create scripts, and work directly in the repo. That makes it better for repeatable systems work: site updates, content pipelines, workflow docs, and internal tools. Use Claude Code when:the task touches files the system needs judgment context matters a page, script, workflow doc, or internal tool needs to change you need the agent to read before it writesDo not use Claude Code as a recurring scheduler. That is not the job. n8n is the automation layer n8n is the automation layer. It should handle triggers, data movement, retries, and approvals. Use n8n for:RSS scans webhook intake Notion or Airtable status changes email list updates content routing scheduled checksDo not use n8n as the brain for every task. Let Claude Code or an LLM handle judgment. Let n8n handle the pipes. That split matters because recurring automation breaks in boring ways: expired tokens, changed fields, failed webhooks, missing approvals. n8n is better at making those failures visible. Obsidian or Notion is the memory layer Your AI stack gets weaker when every decision is trapped in chat history. You need a place for:reusable prompts workflow runbooks project decisions content ideas product notes bugs and fixes what you tried that did not workObsidian is great if you like local markdown and fast notes. Notion is great if your workflows already live in databases. Pick one. The expensive mistake is using both badly. Distribution is part of the stack A solo builder does not just need to build faster. You need to make the work visible. That means the stack needs a distribution layer:Astro site for search pages and tools MailerLite or ConvertKit for owned email YouTube for proof and discovery X or LinkedIn for fast feedback free tools for search and AI visibilityThis is why I do not treat blogging as "content." A good search page is infrastructure. A useful calculator is infrastructure. A workflow page is infrastructure. Where most solo founders go wrong: tools before workflow They buy tools before they have a workflow. The better order is:Do the task manually once. Write down the steps. Remove steps that should not exist. Automate the repeatable pieces. Keep a human approval step anywhere quality matters.That order saves you from automating a mess. The $100-ish version I would run Use the AI stack cost calculator if you want to model your own number, but the lean version looks like this:Category Example setup Monthly rangeAI assistant Claude/Claude Code $20-$100Automation self-hosted n8n or starter plan $5-$30Site Astro on Vercel $0-$20Email MailerLite/ConvertKit $0-$30Notes Obsidian or Notion $0-$15You can spend more. But the first goal is not a perfect stack. The first goal is a stack that ships proof every week. A simple starter stack for solo builders If you are starting today, use this:Claude Code for building and content ops n8n for workflow automation Obsidian for durable notes MailerLite for email Astro for the site YouTube/X/LinkedIn for distributionThat is enough to run a serious one-person AI business without drowning in SaaS subscriptions. What I would automate first Do not automate your whole business first. Automate the loop that creates distribution from work you already did:Capture a build note, video transcript, or workflow run. Save it to your memory layer. Generate one search page idea. Generate one newsletter draft. Generate 2-3 social posts. Route everything for human approval. Publish only the pieces that are actually useful.That gives you leverage without handing your brand to a content slot machine. For prioritizing what to automate, use the automation priority audit. For content math, use the content flywheel ROI calculator. FAQ What is the cheapest AI stack for solo founders? The cheapest useful stack is Claude Code, self-hosted n8n, Obsidian, and a static site. You can keep the recurring cost low while still getting serious leverage. Should solo founders use Zapier or n8n? Use Zapier for simple app-to-app workflows. Use n8n when you want self-hosting, lower marginal cost, and more control over multi-step automations. Do I need a vector database? Probably not at the start. Most solo builders need better files, cleaner workflows, and searchable notes before they need a custom RAG system. What should I automate first? Automate the repetitive workflow that directly supports revenue or distribution. Content repurposing, lead capture, research intake, and publishing approvals are good first candidates. Is this stack enough to grow SEO traffic? The stack is only the machine. Traffic comes from what the machine ships: useful tools, workflow pages, comparison posts, refreshed articles, internal links, and pages that answer real search questions better than the generic results.Want help mapping the lean stack to your actual workflow? Start here.

Claude Code vs n8n: Which One Should Solo Builders Use?

Claude Code vs n8n: Which One Should Solo Builders Use?

Claude Code and n8n are not competitors. They are different parts of the same operating system. Use Claude Code when the task needs judgment, file edits, writing, reasoning, or codebase awareness. Use n8n when the task needs triggers, data movement, scheduled runs, retries, and integrations.The boring answer is the useful answer: Claude Code builds and thinks. n8n runs and routes. Quick comparisonUse case Claude Code n8nEdit website files Best WeakBuild an internal script Best PossibleTrigger when a form is submitted Possible BestMove data between tools Possible BestWrite content in your voice Best Needs LLM nodeSchedule a daily workflow Possible BestInspect a repo and make changes Best WeakRoute content through approvals Possible BestThe 10-second decision rule Ask this: Does the task need context and judgment, or does it need a reliable trigger? If it needs context and judgment, use Claude Code. If it needs a reliable trigger, use n8n. If it needs both, use both. That sounds too simple, but it prevents the common mistake: trying to make n8n think like an operator or trying to make Claude Code behave like a durable scheduler. When to use Claude Code: messy work with context Use Claude Code for work where the prompt is the product. Examples:writing a blog draft from a real build log refactoring a site page creating a new Astro page reviewing a workflow generating a script turning a messy idea into an implementation planClaude Code is strongest when it can read the surrounding context and make decisions. Claude Code is especially strong for solo builders because your business context often lives in files:site copy product docs workflow notes analytics exports newsletter drafts messy markdown docs code and configThat is not a clean API problem. That is an "understand the room before touching things" problem. When to use n8n: repeatable work with triggers Use n8n for the plumbing. Examples:when a YouTube video is uploaded, create content tasks when a Notion status changes, trigger a writing workflow when an RSS item matches a topic, save it for review every Friday, prepare the newsletter draft queue when a form is submitted, add the person to MailerLiten8n is strongest when the workflow has a clear trigger and repeatable steps. It also gives you visibility. When a workflow fails, you can inspect the run, find the bad node, fix the credential, retry the step, and keep moving. That matters once the workflow touches real business operations. The best pattern: Claude Code plus n8n plus human approval The clean pattern is:n8n detects the event. n8n gathers the inputs. Claude handles the judgment-heavy step. n8n saves the output. A human approves. n8n publishes or routes the result.That is the Ship Lean pattern: automation for the boring parts, human review for the parts with consequences. Here is what that looks like for content:Step Owner Job1 n8n Detect new video, build log, or GSC CSV2 n8n Gather transcript, URL, notes, metadata3 Claude Code Create brief, draft, edit, and file diff4 Human Approve quality and positioning5 n8n/GitHub Route PR, deploy, notifyThat is the version I trust. Not "AI posts directly to production while you sleep." That sounds good until it publishes something stale, generic, or wrong. What should solo builders choose first? If your problem is "I need to build or improve the system," start with Claude Code. If your problem is "I keep copying data between apps," start with n8n. If your problem is "I shipped a thing and nobody knows it exists," use both. Claude Code turns the proof into assets. n8n routes and schedules them. Common mistake: using n8n as the whole brain n8n can call LLMs. That does not mean the whole system should live inside n8n. Once prompts, examples, brand rules, page templates, and content logic get serious, they become easier to maintain in a repo. That is where Claude Code shines. Use n8n to collect inputs and trigger the run. Use the repo for durable instructions. Use Claude Code to operate on the repo. Use n8n again to notify and route the result. Common mistake: using Claude Code for recurring ops Claude Code can write a script. It can run a command. It can help you publish. But recurring business operations need:schedules retries run history credential handling webhook triggers alerts handoff to other appsThat is n8n territory. The Ship Lean setup I would run For a solo builder trying to grow traffic:Claude Code owns the content system in the repo. n8n watches for inputs: Search Console exports, YouTube videos, build logs, and newsletter notes. Claude Code creates the page/tool/workflow draft. The editor skill checks for thinness, reader fit, and whether the page actually helps. Visual skill generates a diagram or comparison asset. Human approves. GitHub/Vercel ships.Want to estimate whether an automation is worth building? Run the automation priority audit. Want the stack cost? Use the AI stack cost calculator. If your specific question is whether n8n should run an agent workflow, read what an n8n AI agent is and then map it with the n8n AI Agent Workflow Builder. If you use Codex instead of Claude Code, the decision rule is almost the same. Read Codex vs n8n for the repo-agent version, or AI coding agent vs workflow automation for the broader split. FAQ Can n8n replace Claude Code? No. n8n can call an LLM, but it does not replace a code-aware agent working inside your repo. Can Claude Code replace n8n? Sometimes for small scripts. But for recurring workflows with integrations, triggers, and retries, n8n is cleaner. What is the best first workflow? A content repurposing workflow is usually a strong first build because it turns work you already did into distribution. Should I learn n8n if I already use Claude Code? Yes, if you want recurring workflows that touch multiple apps. Claude Code helps you build and maintain the system. n8n helps the system run on schedule.

Weekly drop

Get the field manual.

One automation system every Saturday. Zero fluff. Just workflows you can steal.