todo-implement

Orchestrate TODO item implementation with implementer and reviewer subagents.

4|Updated Feb 9, 2021
One-click install
npx skills add https://github.com/breengles/poor-man-OS-setup --skill todo-implement
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: todo-implement
Source: https://github.com/breengles/poor-man-OS-setup/tree/main/.claude/skills/todo-implement
Command: npx skills add https://github.com/breengles/poor-man-OS-setup --skill todo-implement

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It coordinates turning items in a TODO file into working code changes while keeping the main session clean and ensuring each change is reviewed and committed safely.

Core Features & Use Cases

  • Orchestrated implementation workflow: Reads TODO files, sequences items, and dispatches dedicated implementer and reviewer subagents per item or batch.
  • Independent review and gated commits: Only marks items done and commits after the reviewer verdict is APPROVED.
  • Blocked handling and retry escalation: Skips blocked items, records block reasons, and supports multiple fix rounds with escalation to a stronger model after repeated rejection.
  • Batching for related work: Reviews and commits independent items together when appropriate, improving throughput without concurrent execution.

Quick Start

Ask the AI to implement the next pending items by running the command: /todo-implement solver all

Frequently Asked Questions about todo-implement

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

FAQPage Schema
How do I automate code implementation from a TODO backlog?

Automated code implementation from a TODO backlog is orchestrated by reading task files, sequencing items by priority, and dispatching dedicated subagents to write and review the code changes. It sequences work, gates commits, and records completion status back into the todo files.

What is the best way to enforce code review before a git commit?

Enforcing code review before a git commit is handled by dispatching an independent reviewer subagent that evaluates the implementation. The system only stages item-related changes and commits if the reviewer verdict is APPROVED, otherwise blocking the commit and triggering fix rounds.

How do you handle blocked TODO items during task orchestration?

Blocked TODO items during task orchestration are skipped to maintain workflow momentum. The system records the specific block reasons back into the todo markdown files and supports multiple fix rounds, escalating to a stronger model after repeated rejection.

Can I batch independent TODO tasks into a single git commit?

Batching independent TODO tasks into a single git commit is supported to improve throughput without concurrent execution. The workflow reviews and commits related independent items together, staging only the item-related changes for a single commit.

Does this task orchestration workflow require external dependencies?

No external dependencies are required to run this task orchestration workflow. The system operates independently by managing status-driven flow, dispatching implementer and reviewer subagents, and handling dependency gating internally.