@getmarrow/install 0.1.37 → 0.1.38
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 +12 -2
- package/package.json +1 -1
- package/src/installer.js +4 -3
package/README.md
CHANGED
|
@@ -88,7 +88,17 @@ npx @getmarrow/install controller stop
|
|
|
88
88
|
|
|
89
89
|
Persistent controller lifecycle is currently Linux-only. On macOS or Windows, activation still installs and verifies the supported hooks without starting or signaling a background process; run `npx @getmarrow/install sidecar` under an owner-managed service and pass `--no-controller`. The controller does not silently upgrade packages, change governance policy, rotate credentials, or modify unrelated project configuration.
|
|
90
90
|
|
|
91
|
-
## What's New in v0.1.
|
|
91
|
+
## What's New in v0.1.38
|
|
92
|
+
|
|
93
|
+
v0.1.38 makes a meaningful Marrow intervention visible without adding manual work to routine agent sessions:
|
|
94
|
+
|
|
95
|
+
- generated instructions tell agents to retrieve and relay one factual intervention receipt after Marrow changes consequential work;
|
|
96
|
+
- Fleet Reports surface the same receipt for owners, including the required workflow, proof status, permit follow-through, and recorded outcome;
|
|
97
|
+
- agents remain quiet for routine low-risk work, and receipts exclude raw context, raw outcomes, proof values, credentials, and cross-tenant data.
|
|
98
|
+
|
|
99
|
+
It preserves the automatic local control lifecycle introduced in v0.1.37.
|
|
100
|
+
|
|
101
|
+
## Previous: v0.1.37
|
|
92
102
|
|
|
93
103
|
v0.1.37 adds the automatic local control lifecycle after explicit owner activation:
|
|
94
104
|
|
|
@@ -270,7 +280,7 @@ Supported integrations capture a compact lifecycle without storing raw prompts,
|
|
|
270
280
|
|
|
271
281
|
Meaningful work opens an outcome-closure item. A tool exit or workflow completion does not silently count as a successful business outcome; an explicit outcome receipt closes it. Transient delivery failures are held in an owner-only local spool and retried with the same event ID so retries do not create duplicate lifecycle records.
|
|
272
282
|
|
|
273
|
-
Owners can inspect pending outcomes in Fleet Operations. Agents can retrieve
|
|
283
|
+
Owners can inspect pending outcomes in Fleet Operations and recent intervention receipts in Reports. Agents can retrieve the same tenant-scoped receipt through the decision trace to explain what Marrow blocked, warned about, or held for review; the required workflow; proof status; permit follow-through; and the recorded outcome. The receipt excludes raw context, raw outcomes, proof values, credentials, and other tenants' data. Agents should relay one factual receipt summary after a meaningful intervention and stay quiet for routine low-risk work.
|
|
274
284
|
|
|
275
285
|
## Passive Token and Value Proof
|
|
276
286
|
|
package/package.json
CHANGED
package/src/installer.js
CHANGED
|
@@ -8,9 +8,9 @@ const { controllerStatus, controllerSupportedPlatform, ensureGovernanceControlle
|
|
|
8
8
|
const DEFAULT_BASE_URL = 'https://api.getmarrow.ai';
|
|
9
9
|
const MARROW_BLOCK_START = '<!-- marrow:passive-start -->';
|
|
10
10
|
const MARROW_BLOCK_END = '<!-- marrow:passive-end -->';
|
|
11
|
-
const MCP_ADAPTER_VERSION = '3.9.
|
|
12
|
-
const SDK_ADAPTER_VERSION = '3.7.
|
|
13
|
-
const SDK_ADAPTER_INTEGRITY = 'sha512-
|
|
11
|
+
const MCP_ADAPTER_VERSION = '3.9.54';
|
|
12
|
+
const SDK_ADAPTER_VERSION = '3.7.53';
|
|
13
|
+
const SDK_ADAPTER_INTEGRITY = 'sha512-CKPVR9gf24mNvZIcFvKhHGZSsUhxa0uDg/bN4dktLlttB/EU/p6CEVWmGqZmxDTnfp4I+qqdJUpzuQSnkNhaIA==';
|
|
14
14
|
const SDK_ADAPTER_TARBALL = `https://registry.npmjs.org/@getmarrow/sdk/-/sdk-${SDK_ADAPTER_VERSION}.tgz`;
|
|
15
15
|
const MCP_PACKAGE_SPEC = `@getmarrow/mcp@${MCP_ADAPTER_VERSION}`;
|
|
16
16
|
const MCP_CONTEXT_HOOK_COMMAND = `npx -y ${MCP_PACKAGE_SPEC} context-hook`;
|
|
@@ -444,6 +444,7 @@ Marrow should run passively after install:
|
|
|
444
444
|
- Keep passive token/model usage proof enabled so Marrow can show token, cost, latency, and workflow savings after real work completes.
|
|
445
445
|
- Before risky work, use Marrow's decision brief or passive prompt hook.
|
|
446
446
|
- After meaningful work, record the outcome so future agents learn from it.
|
|
447
|
+
- After Marrow blocks, warns, or requires review, use the decision trace receipt to tell the operator what changed and which recorded workflow or proof is required. Stay quiet for routine low-risk work.
|
|
447
448
|
- Check health with \`marrow_agent_status\` or \`GET /v1/agent/status\`.
|
|
448
449
|
- When status/runtime returns a \`client_update\` notice, tell the operator and use its exact update and verification commands only when local change policy permits.
|
|
449
450
|
|