Skip to content

Getting Started

Installation

Terminal window
curl -L https://github.com/conductor/conductor/releases/latest/download/conductor-darwin-arm64 -o conductor
chmod +x conductor
sudo 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:

Terminal window
conductor provider add claude-code

That’s it. Conductor uses your existing Claude Code authentication.

Verify your setup:

Terminal window
conductor provider test

You should see a success message. Now you’re ready to run your first workflow.

First Workflow

Create a file hello.yaml:

name: hello
steps:
- id: greet
type: llm
prompt: Say hello to the world in a creative way

Run it:

Terminal window
conductor run hello.yaml

You should see a creative greeting generated by your configured LLM.

Next Steps

  • Tutorial - Build a complete meal planning workflow
  • Providers - Provider configuration reference