npx claudepluginhub premithk/claude-conductorContext-driven development framework for spec-driven development. Transforms AI CLI into a proactive project manager following: Context → Spec & Plan → Implement.
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.
This plugin can be distributed via the Claude Code Plugin Marketplace system. The marketplace configuration is defined in .claude-plugin/marketplace.json.
claude plugin marketplace add premithk/claude-conductor
claude plugin install conductor --scope user
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
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.
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.
Generated Artifacts:
conductor/product.mdconductor/product-guidelines.mdconductor/tech-stack.mdconductor/workflow.mdconductor/code_styleguides/conductor/tracks.md/conductor:setup
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:
Generated Artifacts:
conductor/tracks/<track_id>/spec.mdconductor/tracks/<track_id>/plan.mdconductor/tracks/<track_id>/metadata.json/conductor:newTrack
# OR with a description
/conductor:newTrack Add a dark mode toggle to the settings page
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)/conductor:implement
Conductor will:
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations