From traya-react-native
Resolve all TODO comments using parallel processing.
npx claudepluginhub shivrajkumar/traya-pluginResolve all TODO comments using parallel processing. ## Workflow ### 1. Analyze Get all unresolved TODOs from the /todos/\*.md directory ### 2. Plan Create a TodoWrite list of all unresolved items grouped by type.Make sure to look at dependencies that might occur and prioritize the ones needed by others. For example, if you need to change a name, you must wait to do the others. Output a mermaid flow diagram showing how we can do this. Can we do everything in parallel? Do we need to do one first that leads to others in parallel? I'll put the to-dos in the mermaid diagram flow‑wise so th...
/resolve_todo_parallelResolves all pending TODOs from /todos/*.md using parallel pr-comment-resolver agents with Mermaid dependency planning, then commits changes and pushes to remote. Optional todo ID/pattern filter.
/resolve-todo-parallelResolves all pending CLI TODOs using parallel processing: analyzes dependencies with Mermaid diagram, spawns parallel resolver agents, commits changes, removes TODOs, and pushes to remote.
/miyabi-todosScans codebase path for TODO/FIXME/HACK/XXX/NOTE comments with patterns for priority/user/deadline, reports details/summary, and optionally auto-creates non-duplicate GitHub Issues with labels.
/sc-resolve-pr-parallelResolves all unresolved PR comments in parallel using dedicated resolver agents, fetches comments via script, plans fixes, summarizes changes for review.
Share bugs, ideas, or general feedback.
Resolve all TODO comments using parallel processing.
Get all unresolved TODOs from the /todos/*.md directory
Create a TodoWrite list of all unresolved items grouped by type.Make sure to look at dependencies that might occur and prioritize the ones needed by others. For example, if you need to change a name, you must wait to do the others. Output a mermaid flow diagram showing how we can do this. Can we do everything in parallel? Do we need to do one first that leads to others in parallel? I'll put the to-dos in the mermaid diagram flow‑wise so the agent knows how to proceed in order.
Spawn a pr-comment-resolver agent for each unresolved item in parallel.
So if there are 3 comments, it will spawn 3 pr-comment-resolver agents in parallel. liek this
Always run all in parallel subagents/Tasks for each Todo item.