@cabane/companion 0.6.35 → 0.6.36
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 +128 -36
- package/dist/cli.js +149 -673
- package/dist/runtime.js +5 -1
- package/package.json +1 -1
package/dist/runtime.js
CHANGED
|
@@ -1284,8 +1284,12 @@ async function warnAboutHarnessReadiness(cfg, deps = {}) {
|
|
|
1284
1284
|
...claudeInstalled ? ["Claude Code"] : [],
|
|
1285
1285
|
...codexInstalled ? ["Codex"] : []
|
|
1286
1286
|
];
|
|
1287
|
+
const connectCommands = [
|
|
1288
|
+
...claudeInstalled ? ["`cabane-companion connect claude-code`"] : [],
|
|
1289
|
+
...codexInstalled ? ["`cabane-companion connect codex`"] : []
|
|
1290
|
+
];
|
|
1287
1291
|
warn(
|
|
1288
|
-
"No harness is connected on this device yet, so no agent turn can run here. " + (installed.length > 0 ? `We found ${installed.join(" and ")} on this machine \u2014 connect ${installed.length > 1 ? "one" : "it"}
|
|
1292
|
+
"No harness is connected on this device yet, so no agent turn can run here. " + (installed.length > 0 ? `We found ${installed.join(" and ")} on this machine \u2014 connect ${installed.length > 1 ? "one with " : "it with "}${connectCommands.join(" or ")} and turns start routing here.` : "Install a harness and sign in \u2014 Claude Code (`npm i -g @anthropic-ai/claude-code`), the Codex CLI (`codex login`), or `opencode serve` \u2014 then connect it with `cabane-companion connect <harness>` (pass `--url <url>` for opencode).")
|
|
1289
1293
|
);
|
|
1290
1294
|
}
|
|
1291
1295
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cabane/companion",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.36",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The Cabane Companion (headless): connect a coding agent on your machine to your Cabane workspace as a responder — drive work against your own codebase, files, and MCP servers without putting any of it in Cabane.",
|
|
6
6
|
"license": "UNLICENSED",
|