← ClaudeAtlas

architecture-designlisted

Design the architecture of an agentic product — choose the autonomy level (L0–L4), compose solutions from the 5 canonical patterns (prompt chaining, routing, parallelization, orchestrator-workers, evaluator-optimizer), decide single-agent vs multi-agent, and identify the right production exemplar to model after. Use whenever the user is starting a new agentic project, restructuring an existing one, asking "what pattern should I use," debating single vs multi-agent, or trying to decide between a deterministic workflow and an autonomous agent loop.
AlexDuchDev/agentic-product-standard · ★ 13 · AI & Automation · score 79
Install: claude install-skill AlexDuchDev/agentic-product-standard
# Architecture Design for Agentic Products The architectural decisions made in the first hour of a project determine whether it ships. This skill walks the user through them deliberately. ## Step 1: Determine the autonomy level (Autonomy Ladder) Never start with "build an agent." Start with "what is the minimum autonomy this task requires?" The cost of getting this wrong is asymmetric: too much autonomy = unreliable, expensive, slow, hard to debug. Too little = doesn't capture value. | Level | What it is | Cost / latency | Use when | |---|---|---|---| | **L0. Single LLM call** | One prompt → one response | Lowest | Classification, extraction, summarization, generation with known structure | | **L1. Augmented LLM** | LLM + retrieval / tools / memory, but single-shot | Low | Q&A over docs, simple structured tasks, lookup + reformat | | **L2. Workflow** | Deterministic code orchestrates LLM steps; path is predefined | Low–medium | The execution path is knowable in advance; predictability matters | | **L3. Orchestrator-Worker** | LLM plans dynamically, dispatches to bounded sub-agents | Medium–high | Parallelizable subtasks (research, multi-source synthesis); breadth-first work | | **L4. Autonomous Agent Loop** | LLM chooses next step iteratively until termination | Highest | Path cannot be enumerated; emergent behavior is the value; cost compounding is acceptable | ### Escalation rule (non-negotiable) Do not climb to level N+1 until level N delivers **≥90% pass rate on a c