@getmarrow/install 0.1.21 → 0.1.22

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 CHANGED
@@ -11,9 +11,9 @@ npx @getmarrow/install --repair
11
11
  npx @getmarrow/install doctor
12
12
  ```
13
13
 
14
- ## What's New in v0.1.21
14
+ ## What's New in v0.1.22
15
15
 
16
- v0.1.21 makes token value proof part of the default install path.
16
+ v0.1.22 makes token value proof easier to repair from the Fleet Operator TUI.
17
17
 
18
18
  - Generated passive runtimes enable compact model-usage capture by default with `captureModelUsage`.
19
19
  - First-run self-test calls `/v1/agent/value/proof` and prints a `Token value proof` block.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmarrow/install",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "description": "Universal installer for Marrow passive agent setup.",
5
5
  "bin": {
6
6
  "marrow-install": "bin/marrow-install.js"
@@ -688,10 +688,13 @@ function normalizeFixCommands(status, capacity) {
688
688
  add(status.route_contract?.exact_fix);
689
689
  add(status.auto_outcome_closure?.exact_fix);
690
690
  add(status.capture_coverage?.exact_fix);
691
+ add(status.token_capture?.exact_fix);
692
+ add(status.token_capture?.fix_command, true);
691
693
  add(capacity.exact_next_action, true);
692
694
  add(capacity.next_action, true);
693
695
  if (listValue(status.missed_hooks, status.degraded_hooks).length) add('npx @getmarrow/install --repair');
694
696
  if (status.auto_outcome_closure?.status === 'degraded') add('npx @getmarrow/install --repair');
697
+ if (status.token_capture?.detected === false) add('npx @getmarrow/install --repair');
695
698
  return commands.slice(0, 6);
696
699
  }
697
700