Agent skill · Workflow & Productivity

agentic-patterns

Use simple, composable patterns to decide when to keep a deterministic workflow versus letting an LLM drive its own control flow with tools, retrieval, and memory. Prefer minimal patterns and add agentic loops only when they unlock necessary flexibility.

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/agent/agentic-patterns/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

--- name: agentic-patterns description: Design and operate multi-agent orchestration patterns (ReAct loops, evaluator-optimizer, orchestrator-workers, tool routing) for LLM systems. Use when building or debugging agent workflows, tool-use loops, or multi-step task delegation; triggers: agentic, multi-agent, orchestration, ReAct, evaluator-optimizer, tool-use, handoff. --- # Agentic Patterns ## Overview Use simple, composable patterns to decide when to keep a deterministic workflow versus letting an LLM drive its own control flow with tools, retrieval, and memory. Prefer minimal patterns and add agentic loops only when they unlock necessary flexibility. ## When to Use - Use this skill when the request matches the frontmatter description and triggers; otherwise start with a deterministic workflow or a single prompt. ## Decision Tree 1. Determine whether the task can be mapped to a fixed sequence. - Yes: implement a workflow chain. - No: continue. 2. Determine whether the output can be evaluated with explicit criteria. - Yes: use an evaluator-optimizer loop. - No: continue. 3. Determine whether the task decomposes into independent subtasks. - Yes: use orchestrator-workers. - No: add a

What's inside
Steps it walks through
  1. Overview
  2. When to Use
  3. Decision Tree
  4. Workflows
  5. 1. Evaluator-Optimizer Loop
  6. 2. Orchestrator-Worker Task Delegation
  7. 3. Tool Poka-Yoke Audit
  8. Non-Obvious Insights
  9. Evidence
  10. Scripts
  11. Dependencies
  12. References
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the agentic-patterns skill do?

Use simple, composable patterns to decide when to keep a deterministic workflow versus letting an LLM drive its own control flow with tools, retrieval, and memory. Prefer minimal patterns and add agentic loops only when they unlock necessary flexibility.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill agentic-patterns --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