techdiagrams.net
← All templates

Agentic AI platform

An agent system with adult supervision: planner and workers, a cross-model critic, guard-railed tool calls, human checkpoints for irreversible actions and deterministic replay.

Open in editor — free, no login Download JSON
THE ACTION BOUNDARY — NOTHING ACTS WITHOUT PASSING HEREgoal + budgetplan ⇄ re-plandispatch stepsdrafts for reviewapprove / revise (max 1 round)tool callsirreversible? pauseguarded execution · compensableevery step tracedUser goal“fix the failing invoices”Orchestratorowns goal · budget · deadlinePlannerdecomposes into stepsWorker agents ×None step eachCritic / judgeDIFFERENT vendor · reviews draftsHuman checkpointapproves irreversible actionsTool routerschema guardrails · allow-listExternal systemsside effects live hereRun logevery step · replayablecompensation, saga-style: if step 4 of 5 fails,the tool router replays steps 1-3's registeredundo actions. Agents don't get to leave a mess.the run log makes agents debuggable: replay anytrajectory deterministically, diff two runs, andfeed failures back into evals.

What this design does

Agents fail in ways chatbots can't: they act. This platform wraps the acting in discipline — an orchestrator owns the budget and delegates to workers; a critic model from a different vendor reviews drafts (models share their own blind spots, so the reviewer shouldn't share the author's); every tool call passes schema guardrails and an allow-list; irreversible actions pause for a human; failed multi-step actions are compensated saga-style; and every step lands in a run log that makes any trajectory replayable, deterministically, for debugging.

The patterns it composes

Import it, attach your own numbers, and verify the design against failures — or read the engineering notes.