Getting Started
Installation
curl -L https://github.com/conductor/conductor/releases/latest/download/conductor-darwin-arm64 -o conductorchmod +x conductorsudo mv conductor /usr/local/bin/curl -L https://github.com/conductor/conductor/releases/latest/download/conductor-linux-amd64 -o conductorchmod +x conductorsudo mv conductor /usr/local/bin/Provider Setup
Conductor needs an LLM provider to run workflows. Choose your preferred option:
If you have Claude Code installed:
conductor provider add claude-codeThat’s it. Conductor uses your existing Claude Code authentication.
For local models with Ollama:
# Start Ollama if not runningollama serve
# Pull a modelollama pull qwen3:8b
# Add the providerconductor provider add ollamaSee the Ollama guide for model recommendations by hardware.
Verify your setup:
conductor provider testYou should see a success message. Now you’re ready to run your first workflow.
First Workflow
Create a file hello.yaml:
name: hellosteps: - id: greet type: llm prompt: Say hello to the world in a creative wayRun it:
conductor run hello.yamlYou should see a creative greeting generated by your configured LLM.