resolve_todo_parallel

Resolve all TODO comments using parallel processing.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "resolve_todo_parallel" with this command: npx skills add udecode/plate/udecode-plate-resolve-todo-parallel

Resolve all TODO comments using parallel processing.

Workflow

  1. Analyze

Get all unresolved TODOs from the /todos/*.md directory

If any todo recommends deleting, removing, or gitignoring files in docs/plans/ or docs/solutions/ , skip it and mark it as wont_fix . These are compound-engineering pipeline artifacts that are intentional and permanent.

  1. 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 the agent knows how to proceed in order.

  1. Implement (PARALLEL)

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

  • Task pr-comment-resolver(comment1)

  • Task pr-comment-resolver(comment2)

  • Task pr-comment-resolver(comment3)

Always run all in parallel subagents/Tasks for each Todo item.

  1. Commit & Resolve
  • Commit changes

  • Remove the TODO from the file, and mark it as resolved.

  • Push to remote

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

code-simplicity-reviewer

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

vercel-react-best-practices

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

brainstorming

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

frontend-design-frontend-design

No summary provided by upstream source.

Repository SourceNeeds Review