Use when facing 2+ independent problems that can be solved concurrently — dispatches one sub-agent per problem domain for parallel investigation and fixing. For parallel task execution within a feature, use code-forge:impl instead.
Dispatches independent sub-agents to solve multiple unrelated problems concurrently.
npx claudepluginhub tercel/code-forgeThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Dispatch independent sub-agents to solve multiple unrelated problems concurrently.
For task execution within a feature: Use /code-forge:impl which has built-in parallel task support.
One agent per independent problem domain. Let them work concurrently.
List all problems. For each, note:
Build a dependency matrix:
Problem A ←→ Problem B: independent? (yes/no, why)
Problem A ←→ Problem C: independent? (yes/no, why)
Problem B ←→ Problem C: independent? (yes/no, why)
Group dependent problems together. Each independent group gets its own agent.
For each independent problem group, launch a Task(subagent_type="general-purpose"):
Agent prompt structure:
You are investigating and fixing: {problem description}
## Scope
- Files involved: {list}
- Error messages: {paste}
- Expected behavior: {description}
## Constraints
- Only modify files in your scope
- Use code-forge:tdd methodology (write failing test first)
- Use code-forge:debug methodology (root cause before fix)
## Output Required
- Root cause (1-2 sentences)
- Files changed (list)
- Test results (pass/fail counts)
- Summary of fix (1-2 sentences)
CRITICAL: Launch all agents in a single message using multiple Task tool calls. This enables true parallel execution.
After all agents complete:
Parallel dispatch complete: {N} agents, {M} problems resolved
Agent 1: {problem} → {root cause} → {status}
Agent 2: {problem} → {root cause} → {status}
Agent 3: {problem} → {root cause} → {status}
Full test suite: {pass}/{total} passing
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
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.