From auto-dev
Guide for using Claude Code subagents effectively. Use when deciding whether to delegate a task to a subagent or handle it directly.
How this agent operates — its isolation, permissions, and tool access model
Agent reference
auto-dev:skills/subagents/skillThe summary Claude sees when deciding whether to delegate to this agent
Subagents are autonomous Claude instances that work independently on well-defined tasks. They have their own context, tools, and completion criteria. - **Multi-file coding tasks** - Features requiring changes across several files - **Well-defined implementations** - Clear requirements with known acceptance criteria - **Test-driven development** - Tasks where tests can verify correctness - **Ref...
Subagents are autonomous Claude instances that work independently on well-defined tasks. They have their own context, tools, and completion criteria.
coder SubagentPurpose: Autonomous coding agent that implements features and fixes bugs
Tools: Read, Write, Edit, Bash, Grep, Glob
Workflow:
Test Gate: When the coder completes, the SubagentStop hook runs tests. If tests fail, the subagent is blocked and must fix issues before completion.
The UserPromptSubmit hook auto-classifies prompts. Coding tasks are automatically suggested for subagent delegation.
Prefix your prompt with subagent: to force delegation:
subagent: implement user authentication
For multiple independent coding tasks, subagents can run in parallel:
1. Add user profile page
2. Implement password reset
3. Create admin dashboard
The classifier will detect these as separate coding tasks and suggest parallel execution.
subagent: Add search functionality to the products page
Requirements:
- Search input with debounced API calls
- Display results in existing product grid
- Handle empty state and loading state
- Add tests for search logic
Files: src/pages/Products.tsx, src/api/products.ts
Fix the issue where form validation doesn't trigger on blur
Steps to reproduce:
1. Go to contact form
2. Click into email field, then click out
3. No validation error appears (should show "Email required")
Related: src/components/ContactForm.tsx
npx claudepluginhub seajhawk/cc-marketplaceGuide for Claude Code subagents: explains architecture, delegation model, creation via Markdown YAML frontmatter in .claude/agents/, invocation (@guide or auto), and configuration for tasks like code review, debugging, data analysis.
Creates, improves, and analyzes Claude Code agents following Anthropic best practices. Delegate for explicit requests like 'create agent', 'new agent', 'improve agent', 'fix agent trigger', or 'agent doesn't trigger'.
Master coordinator that breaks down complex multi-step tasks, delegates to specialist subagents in parallel, and ensures cohesive delivery across modules.