resolve_todo_parallel

Resolve unresolved TODOs from /todos/*.md in parallel with dependency-aware scheduling.

Updated Mar 14, 2026
One-click install
npx skills add https://github.com/Bradliebs/VolumeTurtle --skill resolve-todo-parallel-bradliebs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: resolve_todo_parallel
Source: https://github.com/Bradliebs/VolumeTurtle/tree/main/.github/skills/resolve_todo_parallel
Command: npx skills add https://github.com/Bradliebs/VolumeTurtle --skill resolve-todo-parallel-bradliebs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates the resolution of pending CLI TODO items by executing resolution steps in parallel, reducing backlog and manual triage.

Core Features & Use Cases

  • Parallel Todo Resolution: Spawn subagents/resolvers for each unresolved item to accelerate cleanup.
  • Dependency-Aware Scheduling: Respect task dependencies to avoid blocking work.
  • Wont-Fix Handling: Skip items proposing deletions or dangerous changes to preserve pipeline integrity.
  • Visualization & Auditing: Output a mermaid flow diagram showing the parallel execution plan.

Quick Start

Run the resolver to process all unresolved TODOs in the repository in parallel.

Frequently Asked Questions about resolve_todo_parallel

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I resolve pending CLI todos in parallel to clear my code review backlog?

To resolve pending CLI todos in parallel, the skill scans the /todos/*.md directory and spawns a pr-comment-resolver agent for each item simultaneously, committing changes and pushing to remote once tasks complete.

What is the best way to automate todo management while respecting task dependencies?

Automating todo management with dependency-aware scheduling prioritizes unresolved items based on their dependencies, generating a mermaid flow diagram to visualize the parallel execution plan before spawning resolver agents.

Does parallel todo resolution skip dangerous changes like deleting files in docs folders?

Yes, parallel todo resolution applies scoped rules to deliberately skip items that recommend deleting or moving files in docs folders, preserving pipeline integrity by avoiding dangerous changes during backlog cleanup.

How do I visualize a parallel execution plan for unresolved TODO items?

Visualizing a parallel execution plan for unresolved TODO items is handled automatically by generating a mermaid flow diagram, which maps out the dependency-aware scheduling and grouped TodoWrite list before processing begins.

Can I use workflow orchestration to automatically commit and push resolved TODOs to remote?

Yes, workflow orchestration automates the full lifecycle by spawning subagents per item in parallel, committing the applied changes, and marking TODOs as resolved with a direct push to remote.

What are the limitations of using parallel processing for CLI todo resolution?

A limitation of using parallel processing for CLI todo resolution is that it cannot execute items proposing file deletions or dangerous moves, as scoped rules intentionally skip these tasks to protect repository stability.