diff --git a/.claude/skills/conductor/references/setup.md b/.claude/skills/conductor/references/setup.md index 6286010..ec00e3f 100644 --- a/.claude/skills/conductor/references/setup.md +++ b/.claude/skills/conductor/references/setup.md @@ -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. diff --git a/pyproject.toml b/pyproject.toml index d43c2a2..a533e7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"