Skip to content

Commit 48d06db

Browse files
jrob5756Jason Robert
andauthored
chore: bump version to 0.1.4 and update install docs (#59)
* 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) * fix setup.md --------- Co-authored-by: Jason Robert <jasonrobert@microsoft.com>
1 parent bfed8f9 commit 48d06db

2 files changed

Lines changed: 14 additions & 4 deletions

File tree

.claude/skills/conductor/references/setup.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,25 @@
44

55
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:
66

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

11-
If `uv` is also not available, install it first:
12+
**Windows (PowerShell):**
13+
```powershell
14+
irm https://aka.ms/conductor/install.ps1 | iex
15+
```
16+
17+
The installer checks for uv (installs it if missing), fetches the latest release with pinned dependencies, and verifies integrity via SHA-256 checksum.
18+
19+
## Updating
1220

1321
```bash
14-
curl -LsSf https://astral.sh/uv/install.sh | sh
22+
conductor update
1523
```
1624

25+
Or re-run the install script — it detects existing installs and upgrades automatically.
26+
1727
After installation, retry the original `conductor` command.
1828

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "conductor-cli"
3-
version = "0.1.2"
3+
version = "0.1.4"
44
description = "A CLI tool for defining and running multi-agent workflows with the GitHub Copilot SDK"
55
readme = "README.md"
66
requires-python = ">=3.12"

0 commit comments

Comments
 (0)