@cabane/companion 0.6.85 → 0.6.86

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.
Files changed (2) hide show
  1. package/dist/cli.js +3 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -1282,7 +1282,9 @@ async function connect2(raw, opts = {}, deps = {}) {
1282
1282
  const probeOpencode = deps.probeOpencode ?? probeOpencodeVersion;
1283
1283
  const cfg = loadConfig2();
1284
1284
  if (!opts.serverUrl?.trim() && alreadyConnected(runtime, cfg)) {
1285
- output(`${INDENT}${HARNESS_LABELS[runtime]} is already connected on this device.`);
1285
+ output(
1286
+ `${INDENT}${HARNESS_LABELS[runtime]} is already connected on ${cfg.deviceLabel ?? "this device"}.`
1287
+ );
1286
1288
  return;
1287
1289
  }
1288
1290
  const live = await (deps.findLiveSocket ?? liveSocket)();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabane/companion",
3
- "version": "0.6.85",
3
+ "version": "0.6.86",
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",