@cabane/companion 0.6.27 → 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 +3 -1
- package/dist/runtime.js +3 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -9528,7 +9528,9 @@ var CompanionSupervisor = class {
|
|
|
9528
9528
|
// the heartbeat cadence (fresh presence for the manifest + UI) and on demand.
|
|
9529
9529
|
async refreshHarnessStatuses() {
|
|
9530
9530
|
try {
|
|
9531
|
-
const signals = await probeHarnessSignals(this.config
|
|
9531
|
+
const signals = await probeHarnessSignals(this.config, {
|
|
9532
|
+
probeClaudePresence: this.probeClaudePresence
|
|
9533
|
+
});
|
|
9532
9534
|
this.harnessSignals = signals;
|
|
9533
9535
|
this.harnessVersions = {
|
|
9534
9536
|
claudeCode: signals.claudeVersion,
|
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",
|