Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
conductor logo

conductor

conductor

Development WorkflowClaude Codeby Premith K

Summary

Transform Claude Code into a proactive project manager. Follow the protocol: Context → Spec & Plan → Implement. Perfect for teams who want consistent, high-quality software development.

Install to Claude Code

/plugin install conductor@conductor

Run in Claude Code. Add the marketplace first with /plugin marketplace add premithk/claude-conductor if you haven't already.

README.md

Conductor Plugin for Claude Code

This is a direct port of Original Gemini Extension

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 -> 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.
  • 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.

Installation

Prerequisites

  • Claude Code CLI installed (latest version recommended)
  • Git (optional, but recommended for revert feature)
  • Internet connection (for GitHub installation)

Marketplace Setup

This plugin can be distributed via the Claude Code Plugin Marketplace system. The marketplace configuration is defined in .claude-plugin/marketplace.json.

For Users: Installing from a Marketplace

claude plugin marketplace add premithk/claude-conductor
claude plugin install conductor --scope user

Verify Installation

After installation, verify the plugin is working:

# Check if commands are available
claude --help | grep conductor

# You should see:
# /conductor:setup
# /conductor:newTrack
# /conductor:implement
# /conductor:status
# /conductor:revert

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.

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.md
  • conductor/product-guidelines.md
  • conductor/tech-stack.md
  • conductor/workflow.md
  • conductor/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:newTrack. 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.md
  • conductor/tracks/<track_id>/plan.md
  • conductor/tracks/<track_id>/metadata.json
/conductor:newTrack
# OR with a description
/conductor:newTrack Add a dark mode toggle to the settings page

3. 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: 1. Select the next pending task. 2. Follow the defined workflow (e.g., TDD: Write Test -> Fail -> Implement -> Pass). 3. Update the status in the plan as it progresses. 4. 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:status
  • Revert work: Undo a feature or a specific task if needed.
  /conductor:revert

Commands Reference

| Command | Description | Artifacts | | :--- | :--- | :--- | | /conductor:setup | Scaffolds the project and sets up the Conductor environment. Run this once per project. | conductor/product.md<br>conductor/product-guidelines.md<br>conductor/tech-stack.md<br>conductor/workflow.md<br>conductor/tracks.md | | /conductor:newTrack | Starts a new feature or bug track. Generates spec.md and plan.md. | conductor/tracks/<id>/spec.md<br>conductor/tracks/<id>/plan.md<br>conductor/tracks.md | | /conductor:implement | Executes the tasks defined in the current track's plan. | conductor/tracks.md<br>conductor/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 |

Troubleshooting

Plugin not found after installation

Problem: Commands don't appear in --help

Solutions: 1. Check plugin installation:

   ls -la ~/.claude/plugins/ | grep conductor

2. Verify plugin.json exists:

   cat ~/.claude/plugins/claude-conductor/.claude-plugin/plugin.json

3. Restart Claude Code or your terminal

Development

Resources

Changelog

0.1.0 (Current)

  • Updated to use correct tool names (AskUserQuestion)
  • Added .gitignore for cleaner repositories
  • Reorganized utility scripts
  • Enhanced plugin manifest with contributes section
  • Added CONTRIBUTING.md for developers

0.0.1

  • Initial port from Gemini CLI extension
  • Core commands: setup, newTrack, implement, status, revert
  • Template system for workflows and style guides

Legal

Related plugins

Browse all →