
Conductor
- 8 repo stars
- Updated April 11, 2026
- cloudaura-io/cloudaura-marketplace
Context-driven development framework. Measure twice, code once.
About
conductor is a Claude Code skill in the AI & Agent Building category. Context-driven development framework. Measure twice, code once.
- conductor
- AI & Agent Building
- AI-coding skill
Conductor by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add cloudaura-io/cloudaura-marketplace/plugin install conductor@cloudaura-marketplaceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 8 |
|---|---|
| Last updated | April 11, 2026 |
| Repository | cloudaura-io/cloudaura-marketplace ↗ |
What it does
Context-driven development framework. Measure twice, code once.
README.md
Conductor Plugin for Claude Code
[!NOTE] Ported from Conductor Extension for Gemini CLI.
Measure twice, code once.
Conductor is a Claude Code plugin that enables Context-Driven Development. It turns Claude Code into a proactive project manager that follows a strict protocol to specify, plan, and implement software features and bug fixes.
Instead of just writing code, Conductor ensures a consistent, high-quality lifecycle for every task: Context -> Spec & Plan -> Edit & Rescope -> Implement.
The philosophy behind Conductor is simple: control your code. By treating context as a managed artifact alongside your code, you transform your repository into a single source of truth that drives every agent interaction with deep, persistent project awareness.
Features
- Plan before you build: Create specs and plans that guide the agent for new and existing codebases.
- Maintain context: Ensure AI follows style guides, tech stack choices, and product goals.
- Edit mid-flight: Modify specs, rescope plans, or adjust metadata on in-progress tracks without losing completed work.
- Iterate safely: Review plans before code is written, keeping you firmly in the loop.
- Work as a team: Set project-level context for your product, tech stack, and workflow preferences that become a shared foundation for your team.
- Build on existing projects: Intelligent initialization for both new (Greenfield) and existing (Brownfield) projects.
- Smart revert: A git-aware revert command that understands logical units of work (tracks, phases, tasks) rather than just commit hashes.
- Interactive forms: Native Claude Code UI with keyboard navigation.
Interactive Forms
Conductor uses Claude Code's AskUserQuestion tool for all prompts. Navigate with arrow keys, select with Enter, type custom answers.
| Select option | Custom input |
|---|---|
![]() |
![]() |
Installation
Step 1: Add the marketplace
claude plugin marketplace add https://github.com/cloudaura-io/conductor-claude-code.git
Step 2: Install the plugin
For all projects (user scope):
claude plugin install conductor@cloudaura-marketplace --scope user
Or for a specific project only:
cd /path/to/your/project
claude plugin install conductor@cloudaura-marketplace --scope local
Step 3: Verify installation
Start a new Claude Code session and type /conductor: - you should see available commands:
/conductor:setup/conductor:new-track/conductor:edit-track/conductor:implement/conductor:status/conductor:revert/conductor:review
Usage
Conductor is designed to manage the entire lifecycle of your development tasks.
Note on Token Consumption: Conductor's context-driven approach involves reading and analyzing your project's context, specifications, and plans. This can lead to increased token consumption, especially in larger projects or during extensive planning and implementation phases. You can check the token consumption in the current session by running /cost.
1. Set Up the Project (Run Once)
When you run /conductor:setup, Conductor helps you define the core components of your project context. This context is then used for building new components or features by you or anyone on your team.
- Product: Define project context (e.g. users, product goals, high-level features).
- Product guidelines: Define standards (e.g. prose style, brand messaging, visual identity).
- Tech stack: Configure technical preferences (e.g. language, database, frameworks).
- Workflow: Set team preferences (e.g. TDD, commit strategy). Uses workflow.md as a customizable template.
Generated Artifacts:
conductor/product.mdconductor/product-guidelines.mdconductor/tech-stack.mdconductor/workflow.mdconductor/code_styleguides/conductor/tracks.md
/conductor:setup
2. Start a New Track (Feature or Bug)
When you're ready to take on a new feature or bug fix, run /conductor:new-track. This initializes a track — a high-level unit of work. Conductor helps you generate two critical artifacts:
- Specs: The detailed requirements for the specific job. What are we building and why?
- Plan: An actionable to-do list containing phases, tasks, and sub-tasks.
Generated Artifacts:
conductor/tracks/<track_id>/spec.mdconductor/tracks/<track_id>/plan.mdconductor/tracks/<track_id>/metadata.json
/conductor:new-track
# OR with a description
/conductor:new-track "Add a dark mode toggle to the settings page"
3. Edit an Existing Track
Requirements change. When they do, run /conductor:edit-track to modify a track that's already in progress — without losing completed work.
Conductor offers four edit modes:
- Edit Spec: Modify the specification, with a changelog entry appended automatically.
- Edit Plan: Add, remove, or reorder pending tasks and phases. Completed items are locked; in-progress items require confirmation.
- Rescope: Update the spec and regenerate all remaining plan items in one flow.
- Edit Metadata: Change the track's description or type.
/conductor:edit-track
# OR target a specific track
/conductor:edit-track "dark mode toggle"
4. Implement the Track
Once you approve the plan, run /conductor:implement. Your coding agent then works through the plan.md file, checking off tasks as it completes them.
Updated Artifacts:
conductor/tracks.md(Status updates)conductor/tracks/<track_id>/plan.md(Status updates)- Project context files (Synchronized on completion)
/conductor:implement
Conductor will:
- Select the next pending task.
- Follow the defined workflow (e.g., TDD: Write Test -> Fail -> Implement -> Pass).
- Update the status in the plan as it progresses.
- Verify Progress: Guide you through a manual verification step at the end of each phase to ensure everything works as expected.
During implementation, you can also:
Check status: Get a high-level overview of your project's progress.
/conductor:statusRevert work: Undo a feature or a specific task if needed.
/conductor:revertReview work: Review completed work against guidelines and the plan.
/conductor:review
Commands Reference
| Command | Description | Artifacts |
|---|---|---|
/conductor:setup |
Scaffolds the project and sets up the Conductor environment. Run this once per project. | conductor/product.mdconductor/product-guidelines.mdconductor/tech-stack.mdconductor/workflow.mdconductor/tracks.md |
/conductor:new-track |
Starts a new feature or bug track. Generates spec.md and plan.md. |
conductor/tracks/<id>/spec.mdconductor/tracks/<id>/plan.mdconductor/tracks.md |
/conductor:edit-track |
Modifies an existing track's spec, plan, or metadata. Supports rescoping. | conductor/tracks/<id>/spec.mdconductor/tracks/<id>/plan.mdconductor/tracks/<id>/metadata.json |
/conductor:implement |
Executes the tasks defined in the current track's plan. | conductor/tracks.mdconductor/tracks/<id>/plan.md |
/conductor:status |
Displays the current progress of the tracks file and active tracks. | Reads conductor/tracks.md |
/conductor:revert |
Reverts a track, phase, or task by analyzing git history. | Reverts git history |
/conductor:review |
Reviews completed work against guidelines and the plan. | Reads plan.md, product-guidelines.md |
Resources
- Claude Code Plugins: Documentation about using plugins in Claude Code
- GitHub issues: Report bugs or request features
Legal
- License: Apache License 2.0

