Resolve all TODOs and GitHub issues using parallel processing with multiple agents
Automates resolution of TODOs and GitHub issues by spawning parallel agents to handle each task. Use this when you have multiple unresolved items that can be processed concurrently to save time.
/plugin marketplace add hirefrank/hirefrank-marketplace/plugin install edge-stack@hirefrank-marketplaceResolve all TODO files and GitHub issues using parallel processing.
Get all unresolved items from multiple sources:
TODO Files:
/todos/*.md directoryGitHub Issues:
gh issue list --json number,title,labels,body,urlCreate a TodoWrite list of all unresolved items grouped by source (TODO files vs GitHub issues) and type.
Dependency Analysis:
Visualization:
Spawn appropriate agents for each unresolved item in parallel, using the right agent type for each source:
For TODO files:
For GitHub issues:
Example: If there are 2 TODO items and 3 GitHub issues, spawn 5 agents in parallel:
Always run all in parallel subagents/Tasks for each item (respecting dependencies from Step 2).
For TODO files:
For GitHub issues:
gh issue close <number> --comment "Resolved in commit <sha>"Final steps: