Create, run, monitor, and manage Conductor workflows, including agentic AI workflows. Automate workflow optimization, generate worker stubs in multiple languages, and perform natural language task management via CLI.
Review and optimize an existing Conductor workflow
Generate a Conductor worker stub for a SIMPLE task in your language of choice
First-time Conductor setup — install the CLI, choose a server, configure auth
Conductor command menu — pick a structured action or describe what you want
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Teach your AI coding agent to create, run, monitor, and manage Conductor workflow orchestrations.
Once installed, your AI agent can:
On Claude Code, four slash commands give you direct entry points:
| Command | Purpose |
|---|---|
/conductor | Menu — lists subcommands and natural-language examples |
/conductor-setup | First-time setup (CLI, server, auth) |
/conductor-optimize | Review a workflow against the optimization checklist |
/conductor-scaffold-worker | Generate a worker stub in your language |
Everything else (run, status, schedule, retry, signal, visualize, create) works through plain English — no command needed.
Install as a Claude Code plugin from the marketplace:
/plugin marketplace add conductor-oss/conductor-skills
/plugin install conductor@conductor-skills
Or test against a local checkout during development:
/plugin marketplace add /path/to/conductor-skills
/plugin install conductor@conductor-skills
If you have Node.js, you can install through npm — useful in CI and dev containers:
# One-off, no global install
npx @conductor-oss/conductor-skills --agent claude
npx @conductor-oss/conductor-skills --all
# Or globally
npm install -g @conductor-oss/conductor-skills
conductor-skills --agent cursor
conductor-skills --all --upgrade
conductor-skills --agent cline --uninstall
The npm package bundles all skill content, so it works offline once installed. For Claude Code, just restart your session after install to pick up the plugin.
One command to auto-detect every supported agent on your system and install globally where possible. Re-run anytime — it only installs for newly detected agents.
macOS / Linux
curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh | bash -s -- --all
Windows (PowerShell)
irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -All
Windows (cmd)
powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -All"
These agents don't support global install — run the command from your project directory.
macOS / Linux
| Agent | Command |
|---|---|
| Cline | curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh | bash -s -- --agent cline |
| GitHub Copilot | curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh | bash -s -- --agent copilot |
| Amazon Q | curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh | bash -s -- --agent amazonq |
Windows (PowerShell)
npx claudepluginhub conductor-oss/conductor-skills --plugin conductorMulti-agent workflow orchestration via YAML. Ships the conductor skill so the assistant can validate, run, debug, and author workflow files for the conductor CLI.
Orchestrate complex workflows with DAG-based execution, parallel tasks, and run history tracking
Pi Flow — author, enhance, and run structured filesystem-coordinated workflows (a DAG of producer/verify nodes) as a fleet of efficient pi agents driven by non-Claude coding-plan models, with Claude Code as the single console. Three skills: piflow-init (create a workflow), piflow-enhance (improve it), piflow-start (run + monitor it).
Multi-agent workflow orchestration with natural language creation, parallel execution, conditional flows, and visual progress tracking
Store, query, and create YAML workflow playbooks for LLM agents via MCP. STDIO or Streamable HTTP.
Prefect workflow orchestration - read-only MCP server for diagnostics, CLI skill for mutations