Skip to main content
Agento waving hello
Grow your agents, don’t just prompt them.
Run. Judge. Read the journal. Fix the hotspot. Run again. That’s the loop that turns unpredictable agents into reliable ones.
Agento Studio is a systematic approach to growing AI agents. A judge tells you if the agent got it right. A journal tells you why it behaved the way it did. You need both β€” without the judge you’re guessing, without the journal you’re tuning blind. github.com/markpollack/agento-studio

Agents Are Workflows

An agent isn’t a magic black box β€” it’s a workflow. Each step is either deterministic (build, lint, test, measure coverage) or an AI step (reason about an error, generate code, decide what to fix next). What people casually call β€œan agent” is usually just the AI step β€” one node in a larger pipeline.
This is the actual AgentWorks PR Review pipeline β€” seven deterministic steps, a judge gate, then parallel AI assessment only if the build passes. Most of the workflow never touches an LLM. This is exactly the pattern Stripe arrived at independently with their Minions system β€” 1,300+ PRs per week at $1T scale. They call the pattern β€œblueprints”: deterministic nodes interleaved with agent nodes. As Stripe’s Alistair Gray put it: β€œBlueprints combine the determinism of workflows with agents’ flexibility in dealing with the unknown.” The insight behind Agento Studio: the workflow structure matters more than the model powering the AI steps. Better prompts, targeted knowledge, and deterministic checkpoints consistently outperform model upgrades. That’s the thesis β€” knowledge + structured execution > model β€” and the build-measure-improve loop below is how you prove it for your agent.

How It Works

  1. Run the agent on a real task
  2. Judge the output β€” did it actually work? (correctness)
  3. Read the journal β€” why did it behave that way? (behavior)
  4. Fix the hotspot β€” better skill, better prompt, better tool
  5. Run again β€” measure if it improved
Each lever you can turn β€” skills, knowledge bases, pre-analysis, steering hooks β€” gets validated through this loop, not assumed to help.

What You Can Build

The methodology supports four project variants β€” each with its own feedback loop:

Agents Built So Far

Each one goes through the same cycle: run on real tasks, judge the output, read the journal, fix the hotspots, run again.

Blog

  • I Read My Agent’s Diary β€” Markov chain analysis of agent tool-call traces across eval-agent experiments
  • Look Ma, No RAG! β€” How the knowledge layer works: routing tables, two KB types, federation, and health checks

Try It

The repo includes slash commands in .claude/commands/ β€” they’re available automatically when you launch Claude Code from within the repo:
To use the commands from another project, add the repo as a context directory:
The getting-started guide walks through building your first research-partner KB end-to-end β€” five seed papers, 20 minutes, a working research agent at the end.

License

BSL 1.1 β€” converts to Apache 2.0 on April 1, 2029.