Use when deciding whether to delegate work to subagents. Lists available agents with triggers and capabilities. Delegate aggressively.
/plugin marketplace add sharpner/claude-agents/plugin install workflow-core@sharpner-claude-agentsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Principle: Delegate aggressively. Fresh subagents work better than overloaded context.
| Situation | Action |
|---|---|
| Complex code review | → Spawn code-reviewer agent |
| Security concerns | → Spawn security reviewer |
| UI/Mobile changes | → Spawn mobile/design reviewer |
| Large exploration (10+ files) | → Spawn Explore agent |
| Multiple independent tasks | → Spawn parallel agents |
| Agent | Trigger | Focus |
|---|---|---|
pr-review-toolkit:code-reviewer | Complex PRs (>10 files) | Code quality, patterns |
pr-review-toolkit:silent-failure-hunter | Error handling changes | Silent failures, catch blocks |
pr-review-toolkit:type-design-analyzer | New types introduced | Type invariants, encapsulation |
loose-ends-hunter | Refactoring, deletions | Dead code, orphaned imports |
| Agent | When |
|---|---|
Explore | Codebase exploration, pattern search |
Plan | Implementation strategy, architecture |
gemini-explorer | [OPTIONAL] Large-context analysis (1M tokens) |
Define in .claude/agents/:
security-reviewer.md - OWASP Top 10 checksmobile-reviewer.md - Touch targets, responsivedesign-reviewer.md - Design system complianceWhen multiple independent issues exist:
# Launch ALL in same message block = PARALLEL
Task(subagent_type="code-reviewer", prompt="Review PR #123 for code quality")
Task(subagent_type="security-reviewer", prompt="Review PR #123 for security")
Task(subagent_type="mobile-reviewer", prompt="Review PR #123 for mobile")
Rules for parallel dispatch:
| Feature | Gemini (via script) | Claude Subagent |
|---|---|---|
| Cost | ~$0.02/review | ~$0.10/review |
| Context | 1M tokens | ~200K tokens |
| Speed | 30-40 sec | 60-90 sec |
Use Gemini for: Diff-based reviews (security, mobile, design) Use Claude for: Complex analysis (loose-ends, user-journey)
# PR Review with verdict
./scripts/gemini-review.sh 236
# Gemini impersonates Claude agent
./scripts/gemini-subagent-impersonation.sh 236 security-reviewer
# Research topic
./scripts/gemini-research.sh "performance optimization"
When delegating:
**Delegation:**
- Task: [what needs review]
- Agent: [which subagent]
- Reason: [why this agent]
- Dispatched: ✅ / Running in background
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.