Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (conductor-init) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Conductor Scaffolding CLI
The scaffolding tool to generate spec-driven, portable Gemini Conductor workflows for any AI coding agent.
npm create conductor-flowConductor Scaffolding CLI enables the context-first evolution of spec-driven development by instantly setting up portable workflows compatible with leading AI Coding Assistants, including:
- Opencode
- Claude Code
- Antigravity
- Cursor
- Github Copilot,
- Codex
- Windsurf
- Cline,
- Kilo Code
- Roo Code
- Qwen Code
- Factory Droid
- Gemini CLI
Originally developed for the Gemini CLI, the Conductor is now decoupled by this project, empowering developers to maintain context, manage tasks, and orchestrate complex features. It serves as a bridge between human intent and AI execution, ensuring "Context is King" in the era of Agentic AI.
✨ Key Features
- Agent-Agnostic Setup: Provide a mechanism to "install" Conductor commands and templates into a project, effectively "enabling" it for consumption by multiple different coding agents.
- Agent-Agnostic Workflows: Switch between agents without losing project context or progress.
- Context Management: Structured artifacts (
product.md,tech-stack.md,spec.md,plan.md) keep your AI agent focused and context-aware. - Spec-Driven Development: Define what you want before asking the AI how to build it.
- Git Ignore Configuration: Automatically configure
.gitignoreor.git/info/excludeto exclude agent configuration files from version control. - Easy Initialization: Single command setup with
npm create conductor-flow.
🚀 Usage
Interactive Mode (Recommended)
The easiest way to start is to run the interactive setup. It will guide you through configuring your workflow spec, selecting your AI agent, and settings.
npm create conductor-flowOr if you prefer the shorthand alias:
npx conductor-initYou will be prompted to select your target environment:
? Select your coding agent:
❯ OpenCode (AGENTS.md, .opencode/commands)
Claude Code (CLAUDE.md, .claude/commands)
Antigravity (GEMINI.md, .agent/workflows)
Cursor (AGENTS.md, .cursor/commands)
VS Code Copilot (AGENTS.md, .github/prompts)
Codex (AGENTS.md, .codex/prompts)
Windsurf (AGENTS.md, .windsurf/workflows)
? Select installation method:
❯ Project (Current Directory)
? Configure git ignore for Conductor files?
Add to .gitignore
Add to .git/info/exclude
Remove existing entries
❯ Don't configure git ignoreArguments & Flags
For power users, you can pass arguments directly to skip prompts:
npm create conductor-flow -a claude-code
#specify a custom template repository and branch
npm create conductor-flow --repo https://github.com/your-org/custom-conductor --branch v2Common Options
npm create conductor-flow [path] [options]
Positionals:
path Directory to install Conductor [string] [default: "."]
Options:
-a, --agent Specify the coding agent
[string] [choices: "opencode", "claude-code", "antigravity", "cursor",
"vscode-copilot", "codex", "windsurf", "cline", "kilo-code", "roo-code",
"qwen-code", "factory-droid", "gemini"]
-r, --repo Git repository URL for conductor. If used without value,
defaults to official repository. [string]
-b, --branch Branch name for conductor repository
[string] [default: "main"]
-s, --scope Installation scope (project or global)
[string] [choices: "project", "global"]
-g, --git-ignore Configure git ignore for Conductor files (gitignore: add to
.gitignore, exclude: add to .git/info/exclude, none: remove
entries) [string] [choices: "gitignore", "exclude", "none"]
-f, --force Force overwrite existing installation
[boolean] [default: false]
-h, --help Show help [boolean]
-v, --version Show version number [boolean]
Examples:
npm create conductor-flow Install with interactive prompts
npm create conductor-flow --agent Install for Claude Code agent
claude-code
npm create conductor-flow --git-ignore Add Conductor files to .gitignore
gitignore
npm create conductor-flow --git-ignore Add Conductor files to
exclude .git/info/exclude
npm create conductor-flow --git-ignore Remove Conductor entries from git
none ignore3. Shell Completion for Global Installation(Advanced Setup)
Enable tab completion for specific shells (Bash, Zsh) to make using conductor-init easier.
Global Installation
npm install -g create-conductor-flowOr, if you prefer the shorthand alias:
npm install -g conductor-initAfter installation, you can use the conductor-init completion command to generate the completion script.
Zsh (Recommended)
Option 1: Source from file (Best for performance)
Generate the script to a file and source it in your .zshrc:
mkdir -p ~/.config/conductor
conductor-init completion > ~/.config/conductor/completion.zsh
echo 'source ~/.config/conductor/completion.zsh' >> ~/.zshrc
source ~/.zshrcOption 2: One-liner
Add this directly to your .zshrc (easiest setup):
echo 'source <(conductor-init completion)' >> ~/.zshrc
source ~/.zshrcBash
Add the completion script to your .bashrc:
conductor-init completion >> ~/.bashrc
source ~/.bashrc4. Using Conductor with Your Agent
Once installed, you can instruct your AI Agent to perform Conductor tasks using the installed commands. For example:
/conductor-setup- Initialize the project structure./conductor-newTrack- Start a new feature or bug fix track./conductor-implement- Implement the selected track./conductor-review- Review the completed track work against guidelines and the plan./conductor-revert- Revert previous work./conductor-status- Check the status of current tracks.
Note: The exact invocation syntax depends on your specific agent's slash command or file context capabilities.
🙏 Acknowledgements
This project is inspired by and based on the Conductor and Conductor-for-all.