@cabane/companion 0.6.70 → 0.6.71

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 CHANGED
@@ -8959,6 +8959,7 @@ ${reason}`,
8959
8959
  if (okResult) {
8960
8960
  body.lastSeenMessageId = payload.messageId;
8961
8961
  }
8962
+ body.outcome = okResult ? "settled" : body.errorReason ? "failed" : "interrupted";
8962
8963
  if (sessionDegraded) {
8963
8964
  body.degraded = true;
8964
8965
  }
package/dist/runtime.js CHANGED
@@ -8458,6 +8458,7 @@ ${reason}`,
8458
8458
  if (okResult) {
8459
8459
  body.lastSeenMessageId = payload.messageId;
8460
8460
  }
8461
+ body.outcome = okResult ? "settled" : body.errorReason ? "failed" : "interrupted";
8461
8462
  if (sessionDegraded) {
8462
8463
  body.degraded = true;
8463
8464
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabane/companion",
3
- "version": "0.6.70",
3
+ "version": "0.6.71",
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",