resolve-parallel ยท diff

git:20260212.897cbbc to git:20260314.e2b1c0f

1 added, 1 removed. Audit A to A.

---
name: resolve-parallel
- description: This skill should be used when resolving all TODO comments in the codebase using parallel processing. It analyzes dependencies, creates a resolution plan with a mermaid flow diagram, and spawns parallel pr-comment-resolver agents. Triggers on "resolve TODOs", "fix all TODOs", "parallel TODO resolution", "clean up TODO comments".
+ description: "This skill should be used when resolving all TODO comments in the codebase using parallel processing. It analyzes dependencies, creates a resolution plan with a mermaid flow diagram, and spawns parallel resolver agents."
---
# Resolve TODO Comments in Parallel
Resolve all TODO comments using parallel processing.
## Workflow
### 1. Analyze
Gather the TODO items from the codebase.
### 2. Plan
Create a TodoWrite list of all unresolved items grouped by type. Look at dependencies that might occur and prioritize the ones needed by others. For example, if a name change is needed, wait to do the dependents. Output a mermaid flow diagram showing how the work can proceed. Can everything run in parallel? Does one item need to complete first before others can start? Structure the to-dos in the mermaid diagram flow-wise so the agent knows how to proceed in order.
### 3. Implement (PARALLEL)
Spawn a pr-comment-resolver agent for each unresolved item in parallel.
So if there are 3 items, spawn 3 pr-comment-resolver agents in parallel:
1. Task pr-comment-resolver(item1)
2. Task pr-comment-resolver(item2)
3. Task pr-comment-resolver(item3)
Always run all in parallel subagents/Tasks for each Todo item.
### 4. Commit & Resolve
- Commit changes
- Push to remote