todo-resolve

Resolve approved todos across multiple files using parallel processing.

434|33|Updated Jul 27, 2025
One-click install
npx skills add https://github.com/udecode/kitcn --skill todo-resolve-udecode
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: todo-resolve
Source: https://github.com/udecode/kitcn/tree/main/.agents/skills/todo-resolve
Command: npx skills add https://github.com/udecode/kitcn --skill todo-resolve-udecode

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Resolve approved todos in code review workflows by orchestrating parallel processing.

Core Features & Use Cases

  • Analyze ready todos across multiple files and triage sessions.
  • Plan and spawn parallel resolvers to update ready items while reporting pending ones.
  • Commit & resolve changes, then clean up completed todos and logs.

Quick Start

Provide an optional todo ID or pattern to filter, then run the resolver to process all ready todos in parallel.

Frequently Asked Questions about todo-resolve

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

FAQPage Schema
How do I batch-resolve approved todos in parallel during code review?

Batch-resolving approved todos in parallel involves orchestrating concurrent processing across multiple files to update ready items. This Skill filters triage sessions for ready todos, spawns parallel resolvers to apply changes, and reports any pending items at the end.

What is the best way to automate triage sessions for multiple todo files?

Automating triage sessions for multiple todo files requires a parallel processing approach that analyzes ready todos across files. This workflow filters to ready items, spawns parallel resolvers to commit changes, and cleans up completed todo files and logs.

Can I filter which todos are processed when running a parallel resolver?

Yes, you can filter which todos are processed by providing an optional todo ID or pattern before running the resolver. This ensures only matching ready items are resolved in parallel while pending items are reported back at the end of the session.

How does the resolver handle pending items that are not yet ready?

The resolver handles pending items by enforcing that only ready todos are resolved during parallel processing. Any items not ready are filtered out, skipped during the update phase, and reported at the end so you can address them separately.

Does todo-resolve clean up log files after resolving code review todos?

Yes, todo-resolve cleans up completed todo files and logs after resolving code review todos. Once parallel resolvers commit and resolve the ready items, the workflow automatically removes the associated completed todo files and log entries.

When should I avoid using parallel processing for todo triage?

You should avoid parallel processing for todo triage when todos have strict execution dependencies or require sequential ordering. This approach enforces parallel resolution of ready items, making it unsuitable for workflows where later todos depend on earlier ones being resolved first.