Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .claude/skills/conductor/references/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,25 @@

Conductor does not need to be checked before every use. Simply run `conductor` commands directly. If the command fails with "command not found", install it:

**macOS / Linux:**
```bash
uv tool install --locked git+https://github.com/microsoft/conductor.git
curl -sSfL https://aka.ms/conductor/install.sh | sh
```

If `uv` is also not available, install it first:
**Windows (PowerShell):**
```powershell
irm https://aka.ms/conductor/install.ps1 | iex
```

The installer checks for uv (installs it if missing), fetches the latest release with pinned dependencies, and verifies integrity via SHA-256 checksum.

## Updating

```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
conductor update
```

Or re-run the install script — it detects existing installs and upgrades automatically.

After installation, retry the original `conductor` command.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "conductor-cli"
version = "0.1.2"
version = "0.1.4"
description = "A CLI tool for defining and running multi-agent workflows with the GitHub Copilot SDK"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
Loading