@cabane/companion 0.6.26 → 0.6.28
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/dist/cli.js +708 -160
- package/dist/runtime.js +3 -1
- package/package.json +1 -1
package/dist/runtime.js
CHANGED
|
@@ -8640,7 +8640,9 @@ var CompanionSupervisor = class {
|
|
|
8640
8640
|
// the heartbeat cadence (fresh presence for the manifest + UI) and on demand.
|
|
8641
8641
|
async refreshHarnessStatuses() {
|
|
8642
8642
|
try {
|
|
8643
|
-
const signals = await probeHarnessSignals(this.config
|
|
8643
|
+
const signals = await probeHarnessSignals(this.config, {
|
|
8644
|
+
probeClaudePresence: this.probeClaudePresence
|
|
8645
|
+
});
|
|
8644
8646
|
this.harnessSignals = signals;
|
|
8645
8647
|
this.harnessVersions = {
|
|
8646
8648
|
claudeCode: signals.claudeVersion,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cabane/companion",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.28",
|
|
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",
|