conductor-implement

📁 airclear/skills 📅 7 days ago
4
总安装量
4
周安装量
#54134
全站排名
安装命令
npx skills add https://github.com/airclear/skills --skill conductor-implement

Agent 安装分布

opencode 4
claude-code 4
github-copilot 4
codex 4
kimi-cli 4
gemini-cli 4

Skill 文档

Conductor Implement

Overview

This skill is the “engine” of the Conductor framework. It takes the approved plan.md and works through it task-by-task, ensuring that every piece of code is tested, documented, and committed according to the project’s standards.

When to Use

  • When a user says “Start implementing,” “Do the next task,” or “Continue working on track X.”
  • After a track has been initialized and planned.

Workflow

  1. Track Selection: Identify the active track or the next pending track in the registry.
  2. Context Loading: Load the track’s spec and plan, and the project’s workflow.
  3. Task Execution: Loop through tasks in the plan. For each task, DEFER to the project’s workflow.md for specific implementation steps (e.g., TDD).
  4. Completion & Sync: Once all tasks are done, synchronize the project-level documentation (product.md, tech-stack.md) with the new changes.
  5. Cleanup: Offer to archive or delete the completed track artifacts.

Implementation Details

Refer to the following protocols for detailed procedural instructions:

Mandatory Constraints

  • Workflow is Law: The workflow.md file in the project is the single source of truth for how tasks are implemented.
  • Confirmation for Sync: NEVER update product.md, tech-stack.md, or product-guidelines.md without explicit user approval of a proposed diff.
  • Success Validation: Validate every tool call. Halt on failure.