conductor-oss-native-darwin-universal 0.42.0 → 0.43.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -4
- package/bin/conductor +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ Conductor adds:
|
|
|
44
44
|
### Launch
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
npx conductor-oss@latest
|
|
47
|
+
npx --yes --registry=https://registry.npmjs.org conductor-oss@latest
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
Running the package with no arguments defaults to `start --open`.
|
|
@@ -57,8 +57,8 @@ Running the package with no arguments defaults to `start --open`.
|
|
|
57
57
|
### Initialize an existing repo
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
npx conductor-oss@latest init
|
|
61
|
-
npx conductor-oss@latest start --workspace .
|
|
60
|
+
npx --yes --registry=https://registry.npmjs.org conductor-oss@latest init
|
|
61
|
+
npx --yes --registry=https://registry.npmjs.org conductor-oss@latest start --workspace .
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
`init` scaffolds `conductor.yaml` and `CONDUCTOR.md`. The SQLite database at `.conductor/conductor.db` is created the first time the backend starts.
|
|
@@ -83,6 +83,7 @@ Conductor ships adapters for the major coding CLIs it knows how to discover, lau
|
|
|
83
83
|
| Gemini | `gemini` |
|
|
84
84
|
| Qwen Code | `qwen` |
|
|
85
85
|
| Amp | `amp` |
|
|
86
|
+
| Hermes | `hermes` |
|
|
86
87
|
| Cursor CLI | `cursor-agent` |
|
|
87
88
|
| OpenCode | `opencode` |
|
|
88
89
|
| Droid | `droid` |
|
|
@@ -91,7 +92,7 @@ Conductor ships adapters for the major coding CLIs it knows how to discover, lau
|
|
|
91
92
|
|
|
92
93
|
## Skills
|
|
93
94
|
|
|
94
|
-
The dashboard includes a Skills tab for each session. It can install curated official skill bundles for Claude Code, Codex, Gemini, Amp, Cursor CLI, OpenCode, Droid, Qwen Code, CCR, and GitHub Copilot.
|
|
95
|
+
The dashboard includes a Skills tab for each session. It can install curated official skill bundles for Claude Code, Codex, Gemini, Amp, Hermes, Cursor CLI, OpenCode, Droid, Qwen Code, CCR, and GitHub Copilot.
|
|
95
96
|
|
|
96
97
|
Skills are mapped to each agent's native folder layout, so user-scoped and workspace-scoped installs land in the right place automatically. The backend also detects custom skill folders already present on the machine and lets you activate or deactivate skills for the current session.
|
|
97
98
|
|
|
@@ -187,6 +188,18 @@ What is no longer supported:
|
|
|
187
188
|
|
|
188
189
|
The user-facing paired-device flow is built around the companion `conductor-bridge` binary and the dashboard bridge pages. The repo also contains `bridge-cmd/`, `crates/conductor-relay/`, and native Rust `conductor bridge ...` commands for lower-level bridge and relay development.
|
|
189
190
|
|
|
191
|
+
For first-time bridge pairing, prefer the hosted installer instead of routing through `npx`:
|
|
192
|
+
|
|
193
|
+
```bash
|
|
194
|
+
curl -fsSL https://app.conductross.com/bridge/install.sh | sh -s -- --connect --dashboard-url https://app.conductross.com --relay-url https://relay.conductross.com/
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
On Windows PowerShell:
|
|
198
|
+
|
|
199
|
+
```powershell
|
|
200
|
+
& ([scriptblock]::Create((Invoke-RestMethod -Uri 'https://app.conductross.com/bridge/install.ps1'))) -Connect -DashboardUrl 'https://app.conductross.com' -RelayUrl 'https://relay.conductross.com/'
|
|
201
|
+
```
|
|
202
|
+
|
|
190
203
|
## Local Files and Runtime Artifacts
|
|
191
204
|
|
|
192
205
|
Conductor uses a small set of local files:
|
package/bin/conductor
CHANGED
|
Binary file
|