Agent skill · AI & Agents

agents

Patterns and architectures for building AI agents and workflows with LLMs. Use when designing systems that involve tool use, multi-step reasoning, autonomous decision-making, or orchestration of LLM-driven tasks.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill agents-itsmostafa-llm-engineering-skil-3 --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 11 KB
Bundled scripts: none
Path: skills/agent/agents-itsmostafa-llm-engineering-skil-3/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

# Building Agents Agents are systems where LLMs dynamically direct their own processes and tool usage. This skill covers when to use agents vs workflows, common architectural patterns, and practical implementation guidance. ## Table of Contents - [Agents vs Workflows](#agents-vs-workflows) - [Workflow Patterns](#workflow-patterns) - [Agent Architectures](#agent-architectures) - [ReAct Pattern](#react-pattern) - [Tool Design](#tool-design) - [Best Practices](#best-practices) - [References](#references) ## Agents vs Workflows | Aspect | Workflows | Agents | |--------|-----------|--------| | **Control flow** | Predefined code paths | LLM determines next step | | **Predictability** | High - deterministic steps | Lower - dynamic decisions | | **Complexity** | Simpler to debug and test | More complex, harder to predict | | **Best for** | Well-defined, repeatable tasks | Open-ended, adaptive problems | **Key principle**: Start with the simplest solution. Use workflows when the task is predictable; use agents when flexibility is required. ## Workflow Patterns ### 1. Prompt Chaining Decompose tasks into sequential LLM calls, where each step's output feeds the next. ```python async def promp

What's inside
Steps it walks through
  1. Table of Contents
  2. Agents vs Workflows
  3. Workflow Patterns
  4. 1. Prompt Chaining
  5. 2. Routing
  6. 3. Parallelization
  7. 4. Orchestrator-Workers
  8. 5. Evaluator-Optimizer
  9. Agent Architectures
  10. Autonomous Agent Loop
  11. Human-in-the-Loop
  12. ReAct Pattern
  13. Tool Design
  14. Principles
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the agents skill do?

Patterns and architectures for building AI agents and workflows with LLMs. Use when designing systems that involve tool use, multi-step reasoning, autonomous decision-making, or orchestration of LLM-driven tasks.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill agents-itsmostafa-llm-engineering-skil-3 --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