conductor-skills

Conductor

Conductor Skills

Teach your AI coding agent to create, run, monitor, and manage Conductor workflow orchestrations.

Star Conductor  ·  Join Slack  ·  License


What You Get

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.


Quick Install

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

Install via npm

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.

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
Amazon Q curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh \| bash -s -- --agent amazonq

Windows (PowerShell)

Agent Command
Amazon Q irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent amazonq

Windows (cmd)

Agent Command
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. GitHub Copilot and Amp share the same .agents/skills/ directory as Codex/Gemini/Cursor/OpenCode — installing any one of them writes it.

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. Or run the slash command shown in brackets where one exists.

Setup & configure (or /conductor-setup)

Create & run

Monitor & diagnose

Manage

Human-in-the-loop

Schedule (part of OSS)

Modify

Review & optimize (or /conductor-optimize)

Workers (or /conductor-scaffold-worker)

AI / LLM workflows

Visualize

Orkes only — secrets, webhooks (Orkes Conductor required)


Examples

Operational:

Example Description
Create and Run a Workflow Define a workflow, register it, and execute it end-to-end
Monitor and Retry Search executions, diagnose failures, and batch-retry
Signal a Wait Task Human-in-the-loop with WAIT tasks and external signals
Review and Optimize Apply the optimization checklist to an existing workflow

Design patterns:

Example Description
FORK_JOIN Parallel Branches Run independent tasks in parallel and converge with JOIN
DO_WHILE Loop Iteration counter via the self-reference pattern
SUB_WORKFLOW Composition Compose reusable child workflows under a parent

AI / LLM patterns:

Example Description
Minimum LLM Workflow Single LLM_CHAT_COMPLETE — building block
AI Agent with MCP Tools List tools → plan → call → summarize (the canonical first-AI-agent tutorial)
Autonomous Agent Loop ReAct-pattern DO_WHILE loop until the LLM decides it’s done
RAG — Retrieval Augmented Generation Vector search + grounded LLM answer with sources

Raw JSON workflow definitions live in skills/conductor/examples/workflows/ — pass any directly to conductor workflow create.

References

Reference Description
Setup Install the CLI, choose a server, configure auth, named profiles
CLI Index Verb → CLI command lookup, grouped by lifecycle / intervention / tasks
Workflow Definition Schema Full JSON schema, every task type, expression syntax
GraalJS Gotchas JS-evaluated task pitfalls — Java-Map proxies, $.varName rule, scope rules, IIFE convention for DO_WHILE
Template Resolution ${...} resolution pitfalls — missing-field-returns-parent, object → string toString, iteration paths
Writing Workers SDK examples in Python, JavaScript, Java, Go, C#, Ruby, Rust
API Reference REST endpoints for direct API access
Visualization Mermaid mappings for every Conductor construct + UI link
Schedules Cron schedules (OSS) — schema, format, idempotency patterns
Optimization Checklist 22 review rules across structure, reliability (incl. LLM-specific gotchas), performance, security
Troubleshooting Common errors, diagnosis flow, stuck-workflow recovery
Orkes Enterprise Secrets, webhooks (Orkes Conductor only)
Fallback CLI Python REST script equivalents when the CLI isn’t available

Evaluations

The evaluations/ directory contains automated test scenarios to validate the skill works correctly with your agent. See evaluations/README.md for details.

python3 scripts/run_evals.py --verbose

Upgrade

Check for a newer version and upgrade all installed agents:

macOS / Linux

curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh | bash -s -- --all --upgrade

Windows

irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -All -Upgrade

Or upgrade a single agent: --agent <name> --upgrade


Supported Agents

Agent Flag Global install Project install
Claude Code claude ~/.claude/skills/conductor/ + plugin (via /plugin marketplace add + /plugin install) — also adds /conductor* slash commands
Codex CLI codex ~/.agents/skills/conductor/ .agents/skills/conductor/
Gemini CLI gemini ~/.agents/skills/conductor/ .agents/skills/conductor/
Cursor cursor ~/.agents/skills/conductor/ .agents/skills/conductor/
Windsurf windsurf ~/.codeium/windsurf/memories/global_rules.md .windsurf/skills/conductor/
Cline cline ~/.cline/skills/conductor/ .cline/skills/conductor/
GitHub Copilot copilot ~/.agents/skills/conductor/ .agents/skills/conductor/
Aider aider ~/.conductor-skills/ + ~/.aider.conf.yml .conductor-skills/ + .aider.conf.yml
Amazon Q amazonq .amazonq/rules/conductor.md
Roo Code roo ~/.roo/rules/conductor.md .roo/rules/conductor.md
Amp amp ~/.agents/skills/conductor/ .agents/skills/conductor/
OpenCode opencode ~/.agents/skills/conductor/ .agents/skills/conductor/

Codex, Gemini, Cursor, OpenCode, GitHub Copilot, and Amp share one .agents/skills/ install — installing any one of them writes the shared directory; installing another just points at the same copy. Uninstalling only removes the shared directory once every agent using it has been uninstalled.


Uninstall

macOS / Linux

# Remove a global install
curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh | bash -s -- --agent <name> --global --uninstall

# Remove a project-level install
curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh | bash -s -- --agent <name> --uninstall

Windows (PowerShell)

# Remove a global install
irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent <name> -Global -Uninstall

# Remove a project-level install
irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent <name> -Uninstall

Windows (cmd)

powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent <name> -Global -Uninstall"

License

Apache 2.0 — see LICENSE.txt.

Built for Conductor OSS. Enterprise features powered by Orkes.