Agent skill · AI & Agents

sub-agents

Create and configure Claude Code sub-agents with custom prompts, tools, and models

parcadeigithub.com/parcadeiGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill sub-agents --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Allowed tools: ReadWriteBash
Path: .claude/skills/sub-agents/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
Language: Python
Read our review of the source →

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

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. When to Use
  2. Quick Start
  3. Interactive (Recommended)
  4. Manual Creation
  5. CLI-Based
  6. Agent File Format
  7. Configuration Fields
  8. Built-In Agents
  9. Model Selection
  10. Tool Combinations
  11. Example Agents
  12. Code Reviewer
  13. Debugger
  14. File Locations
Commands it runs
mkdir -p .claude/agents
cat > .claude/agents/reviewer.md << 'EOF'
claude --agents '{
More from Continuous-Claude-v3
All skills →
About this skill
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.

Keep going