Conductor Skills
Teach your AI coding agent to create, run, monitor, and manage
Conductor workflow orchestrations.
·
·
What You Get
Once installed, your AI agent can:
- Create workflow definitions with any task type (HTTP, SWITCH, FORK, WAIT, etc.)
- Run workflows synchronously or asynchronously
- Monitor executions and search by status, time, or correlation ID
- Manage workflows — pause, resume, terminate, retry, restart
- Signal WAIT and HUMAN tasks for human-in-the-loop patterns
- Write workers in Python, JavaScript, Java, Go, C#, Ruby, or Rust
- Visualize workflows as Mermaid diagrams
- Manage schedules, secrets, and webhooks (Orkes enterprise)
Quick Install
Claude Code Plugin (recommended for Claude users)
Install as a Claude Code plugin from the marketplace:
/plugin marketplace add conductor-oss/conductor-skills
/plugin install conductor@conductor-skills
Or test locally during development:
claude --plugin-dir ./conductor-skills
Install for all detected agents
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"
Install for a specific agent
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)
| Agent | Command |
|---|
| Cline | irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent cline |
| GitHub Copilot | irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent copilot |
| Amazon Q | irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent amazonq |
Windows (cmd)
| Agent | Command |
|---|
| Cline | powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent cline" |
| GitHub Copilot | powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent copilot" |
| Amazon Q | powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent amazonq" |
All other agents are installed globally via the install all command above. You can also use --agent <name> for any agent to do a project-level install.
That's it — ask your agent to connect to your server (see Try It below).
Try It
After installing, try these prompts with your agent:
Configure
- "Connect to my Conductor server at https://play.orkes.io/api"
- "Save my Conductor server config as a profile called production"
- "Switch to my staging Conductor profile"