sub-agents
Create and configure Claude Code sub-agents with custom prompts, tools, and models
npx skills add parcadei/Continuous-Claude-v3 --skill sub-agents --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Sub-Agents Reference Create specialized AI agents with isolated contexts for specific tasks. ## When to Use - "How do I create a sub-agent?" - "Configure agent tools" - "What built-in agents exist?" - "Agent model selection" - "Agent chaining patterns" ## Quick Start ### Interactive (Recommended) ```bash /agents ``` Opens menu to create, edit, and manage agents. ### Manual Creation ```bash mkdir -p .claude/agents cat > .claude/agents/reviewer.md << 'EOF' --- name: reviewer description: Code review specialist. Use proactively after code changes. tools: Read, Grep, Glob, Bash model: sonnet --- You are a senior code reviewer focusing on quality and security. ## Review Checklist - Code clarity and naming - Error handling - Security vulnerabilities - Test coverage EOF ``` ### CLI-Based ```bash claude --agents '{ "reviewer": { "description": "Code reviewer", "prompt": "Review for quality and security", "tools": ["Read", "Bash"], "model": "sonnet" } }' ``` ## Agent File Format ```yaml --- name: agent-name description: When/why to use this agent tools: Read, Edit, Bash # Optional, inherits all if omitted model: sonnet # sonnet, haiku, claude-opus-4-5-20251101, inherit --- System prompt c
- When to Use
- Quick Start
- Interactive (Recommended)
- Manual Creation
- CLI-Based
- Agent File Format
- Configuration Fields
- Built-In Agents
- Model Selection
- Tool Combinations
- Example Agents
- Code Reviewer
- Debugger
- File Locations
mkdir -p .claude/agents
cat > .claude/agents/reviewer.md << 'EOF'
claude --agents '{What does the sub-agents skill do?
Create and configure Claude Code sub-agents with custom prompts, tools, and models
How do I install it?
Run `npx skills add parcadei/Continuous-Claude-v3 --skill sub-agents --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 parcadei/Continuous-Claude-v3, a repository with 3,879 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.
