sub-agents

Solid

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

AI & Automation 3,795 stars 297 forks Updated 4 months ago MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
100
Recency 20%
50
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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 content here... ``` ## Configuration Fields | Field | Required | Options | |-------|----------|---------| | `name` | Yes | lowercase, hyphens | | `description` | Yes | When to use | | `tools` | No | Tool list (inherits all if omitted) | | `model`...

Details

Author
parcadei
Repository
parcadei/Continuous-Claude-v3
Created
5 months ago
Last Updated
4 months ago
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

sub-agents

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

496 Updated 1 months ago
vibeeval
AI & Automation Listed

creating-agents

Creates Claude Code subagents for task delegation. Guides through agent configuration, tool selection, and system prompts. Use this skill when the user wants to create a new agent, delegate tasks to specialists, or asks about subagents.

335 Updated today
aiskillstore
AI & Automation Listed

agent-creator

Create, configure, and orchestrate Claude Code subagents — specialized Claude instances with focused roles and limited tool access. Covers YAML frontmatter (name, description, tools, model, permissions, hooks, MCP servers), system prompt design, tool restriction patterns, background execution, and multi-agent orchestration. Use whenever the user mentions subagents, delegation, specialists, agent configs, `.claude/agents/`, the `/agents` command, or wants to parallelize work — even when they just say "background agent" or "delegate this".

0 Updated 3 days ago
coroboros
AI & Automation Listed

subagent-factory

Create specialized Claude Code agents on-the-fly. Guides through agent definition file creation with proper frontmatter, effective prompts, and tool scoping. USE WHEN user says 'create agent', 'new subagent', 'make an agent for', 'build agent', 'spawn agent', or wants to define custom agents for specific tasks.

335 Updated today
aiskillstore
AI & Automation Listed

create-subagent

This skill should be used when creating custom subagents for Claude Code, configuring specialized AI assistants, or when the user asks about agent creation, agent configuration, or delegating tasks to subagents. Covers both file-based agents and Task tool invocation.

335 Updated today
aiskillstore