agent-architecture-design

Interviews users to select and document a justified agent architecture pattern.

1|9|Updated Jul 11, 2026
One-click install
npx skills add https://github.com/agenticgogol/Edureka_Coding_Agent_Enabled_Demo_11Jul --skill agent-architecture-design-agenticgogol
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agent-architecture-design
Source: https://github.com/agenticgogol/Edureka_Coding_Agent_Enabled_Demo_11Jul/tree/main/.claude/skills/agent-architecture-design
Command: npx skills add https://github.com/agenticgogol/Edureka_Coding_Agent_Enabled_Demo_11Jul --skill agent-architecture-design-agenticgogol

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Teams often jump straight to building an agent with a chosen framework without a written justification for why that architecture pattern fits the problem, leading to over-engineered agent loops where a fixed workflow or plain RAG would suffice. ## Core Features & Use Cases - Structured architecture interview: Runs a batched, numbered questionnaire covering agent justification, knowledge needs, autonomy shape, workload shape, and scale constraints, each with concrete options and recommendations. - Deterministic decision logic: Maps interview answers to one of seven patterns (deterministic code, fixed workflow, RAG assistant, Agentic RAG, bounded ReAct agent, planner-executor, supervisor/multi-agent), with a mandatory human-governance wrapper for high-impact or irreversible actions. - Written design document: Produces architecture_design.md recording the chosen pattern, rejected alternatives with reasons, tool sourcing via MCP-first lookup, non-functional budgets, and evaluation gates. - Use Case: A user says "build me a LangGraph agent for customer support." The skill interviews them, determines the task is actually a fixed retrieve-then-answer flow, and documents a RAG assistant design with the agent alternative explicitly rejected. ## Quick Start Ask the agent to help design the architecture for a new agent idea and answer its numbered interview questions about your business problem and constraints.

Frequently Asked Questions about agent-architecture-design

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I decide between an agent and a fixed workflow?▼

The decision hinges on whether task steps are known in advance or genuinely vary based on mid-task discoveries. If steps are known, a deterministic workflow suffices; only dynamic, unpredictable sequences justify an agent loop.

What is the difference between RAG and Agentic RAG?▼

Standard RAG uses a single fixed retrieve-then-answer call, while Agentic RAG lets the model dynamically reformulate queries, grade retrieved results, route between sources, and abstain when evidence is thin. Choose Agentic RAG only when one retrieval pass demonstrably fails.

When should I use a multi-agent architecture?▼

Multi-agent supervisor-specialist designs are justified only when genuinely different specialist capabilities need independent execution with typed handoffs, and parallelism measurably beats one agent. Coordination cost rarely pays off for general sophistication alone.

Does this skill work with existing project briefs?▼

Yes, it runs before or alongside requirement clarification and can audit an existing brief or design document that assumes an architecture pattern without written justification. Its output feeds directly into technical design as a resolved input.

When should I not run an architecture design interview?▼

Skip it when a design document already contains a reasoned architecture-pattern justification, or when the task is unambiguously a single deterministic transformation with no agent framing. Re-interviewing in those cases adds no value.