I started by asking AI to do everything. Six months later, 65% of my agent’s workflow nodes run as non-AI code.
The first version was fully agentic : every task went to an LLM. LLMs would confidently progress through tasks, though not always accurately.
So I added tools to constrain what the LLM could call. Limited its ability to deviate. I added a Discovery tool to help the AI find those tools. Better, but not enough.
Then I found Stripe’s minion architecture. Their insight : deterministic code handles the predictable ; LLMs tackle the ambiguous.
I implemented blueprints, workflow charts written in code. Each blueprint specifies nodes, transitions between them, trigger conditions for matching tasks, & explicit error handling.
extract_domain (code) → attio_find (code) → harmonic_enrich (code)
→ generate_summary (LLM, 1 turn) → notion_prepend (code)
This differs from skills or prompts. A skill tells the LLM what to do. A blueprint tells the system when to involve the LLM at all.
Each blueprint is a directed graph of nodes. Nodes come in two types : deterministic (code) & agentic (LLM). Transitions between nodes can branch based on conditions.
Deal pipeline updates, chat messages, & email routing account for 29% of workflows, all without a single LLM call.
Company research, newsletter processing, & person research need the LLM for extraction & synthesis only. Another 36%. The workflow runs 67-91% as code. The LLM sees only what it needs : a chunk of text to summarize, a list to categorize, processed in one to three turns with constrained tools.
Blog posts, document analysis, bug fixes are genuinely hybrid. 21% of workflows. Multiple LLM calls iterate toward quality.
Only 14% remain fully agentic. Data transforms & error investigations. These tend to be coding tasks rather than evaluating a decision point in a workflow. The LLM needs freedom to explore.
AI started doing everything. Now it handles routing, exceptions, research, planning, & coding. The rest runs without it.
Is AI doing less? Yes. Is the system doing more? Also yes.
The blueprints, the tools, the skills might be temporary scaffolding. With each new model release, capabilities expand. Tasks that required deterministic code six months ago might not tomorrow.