Agent skill · Design & Presentation

agentic-systems-design

Use when designing tool-use agents, multi-step reasoning systems, planning loops, multi-agent architectures, or agent evaluation frameworks.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill agentic-systems-design --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 15 KB
Bundled scripts: none
Path: skills/agent/agentic-systems-design/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Agentic Systems Design ## Agent Architecture Selection | Architecture | Use When | Complexity | Latency | |-------------|----------|-----------|---------| | **Single-agent ReAct** | 1-5 tools, linear reasoning | Low | Low | | **Plan-and-execute** | Multi-step tasks needing upfront planning | Medium | Medium | | **Tree-of-Thought** | Tasks with branching solutions, math/logic | Medium | High | | **LATS (Language Agent Tree Search)** | Complex search + evaluation loops | High | Very High | | **Multi-agent supervisor** | Specialized sub-tasks, delegation | High | Medium | | **Multi-agent debate** | Tasks needing verification, fact-checking | High | High | | **Multi-agent chain** | Sequential pipeline, each agent transforms output | Medium | Medium-High | **Decision rule**: Start with single-agent ReAct. Escalate to plan-and-execute if the agent frequently fails mid-task. Use multi-agent only when a single model cannot hold all required expertise in context. ## Planning Patterns ### ReAct (Reasoning + Acting) The default pattern. Model alternates between reasoning (think) and acting (tool call). ```python import anthropic client = anthropic.Anthropic() def react_agent(question: str,

What's inside
Steps it walks through
  1. Agent Architecture Selection
  2. Planning Patterns
  3. ReAct (Reasoning + Acting)
  4. Plan-and-Execute
  5. Tree-of-Thought
  6. Tool Design Principles
  7. Schema Design
  8. Error Handling in Tool Results
  9. Multi-Agent Patterns
  10. Supervisor Pattern
  11. Debate Pattern
  12. Agent Evaluation
  13. Guardrails
  14. Gotchas
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the agentic-systems-design skill do?

Use when designing tool-use agents, multi-step reasoning systems, planning loops, multi-agent architectures, or agent evaluation frameworks.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill agentic-systems-design --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going