conductor-implement

Execute track implementation plans following TDD workflow with phase verification checkpoints.

2|Updated Jun 16, 2026
One-click install
npx skills add https://github.com/monang404/lunawave --skill conductor-implement-monang404
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: conductor-implement
Source: https://github.com/monang404/lunawave/tree/main/.agent/skills/conductor-implement
Command: npx skills add https://github.com/monang404/lunawave --skill conductor-implement-monang404

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing multi-phase feature implementation manually leads to skipped tests, lost progress state, and inconsistent commits. This Skill automates the execution of a track's implementation plan with structured TDD cycles, progress tracking, and mandatory verification gates. ## Core Features & Use Cases - TDD Task Execution: Runs Red-Green-Refactor cycles per task, writing failing tests first, implementing minimal code, then refactoring while keeping tests green. - Progress State Management: Tracks task and phase completion in plan.md and metadata.json, enabling pause and resume of long implementations. - Phase Verification Gates: Halts after each phase to run the full test suite and waits for explicit user approval before continuing. - Use Case: A developer has a Conductor track for a user authentication feature with 3 phases and 12 tasks. This Skill executes each task in order, commits after every completion, and pauses at phase boundaries for review. ## Quick Start Run the implement command with a track ID, such as asking to implement the track auth_20250115 following the TDD workflow.

Frequently Asked Questions about conductor-implement

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

FAQPage Schema
How do I implement a Conductor track with TDD?▼

Provide the track ID as an argument, and the Skill loads the track's plan.md, spec.md, and workflow.md, then executes each incomplete task through Red-Green-Refactor cycles. It commits after every task and pauses at phase boundaries for your approval.

How do I resume a paused track implementation?▼

The Skill reads metadata.json to find the current_task field and checks plan.md for in-progress tasks. It then offers options to continue from where you left off, restart the current task, or show a progress summary first.

What happens when tests fail during task implementation?▼

The Skill halts immediately and presents options: attempt to fix the failing tests, roll back the task changes, or pause for manual intervention. It never continues automatically past a test failure.

Does the implementation skill require Conductor to be set up first?▼

Yes, it performs pre-flight checks for conductor/product.md, conductor/workflow.md, and conductor/tracks.md before starting. If any are missing, it displays an error and suggests running the setup command first.

Can I implement a track without following TDD?▼

Yes, if the TDD strictness setting in conductor/workflow.md is not strict, the Skill falls back to a non-TDD workflow: implement the task directly, run existing tests, and perform manual verification.