From c713c10713f01be2018885ed09af7326bb3166f0 Mon Sep 17 00:00:00 2001 From: Jason Robert Date: Wed, 25 Mar 2026 16:11:53 -0400 Subject: [PATCH 1/2] chore: bump version to 0.1.4 and update install docs - Bump version in pyproject.toml to 0.1.4 - Update setup skill with new install script instructions (aka.ms URLs) --- .claude/skills/conductor/references/setup.md | 26 +++++++++++++++++++- pyproject.toml | 2 +- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/.claude/skills/conductor/references/setup.md b/.claude/skills/conductor/references/setup.md index 6286010..63e934d 100644 --- a/.claude/skills/conductor/references/setup.md +++ b/.claude/skills/conductor/references/setup.md @@ -4,8 +4,24 @@ 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 +``` + +**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. + +### Manual Install + +If you prefer to install manually: + +```bash +uv tool install git+https://github.com/microsoft/conductor.git ``` If `uv` is also not available, install it first: @@ -14,5 +30,13 @@ If `uv` is also not available, install it first: curl -LsSf https://astral.sh/uv/install.sh | sh ``` +## Updating + +```bash +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" From afe78250d94736a30bde7c2927a451ca90c7e164 Mon Sep 17 00:00:00 2001 From: Jason Robert Date: Wed, 25 Mar 2026 16:15:43 -0400 Subject: [PATCH 2/2] fix setup.md --- .claude/skills/conductor/references/setup.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.claude/skills/conductor/references/setup.md b/.claude/skills/conductor/references/setup.md index 63e934d..ec00e3f 100644 --- a/.claude/skills/conductor/references/setup.md +++ b/.claude/skills/conductor/references/setup.md @@ -16,20 +16,6 @@ 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. -### Manual Install - -If you prefer to install manually: - -```bash -uv tool install git+https://github.com/microsoft/conductor.git -``` - -If `uv` is also not available, install it first: - -```bash -curl -LsSf https://astral.sh/uv/install.sh | sh -``` - ## Updating ```bash