@getmarrow/install 0.1.14 → 0.1.15

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,7 +15,7 @@ npx @getmarrow/install doctor
15
15
 
16
16
  v0.1.14 adds adaptive governance mode recommendations without silent auto-switching.
17
17
 
18
- - `npx @getmarrow/install govern` now detects project signals such as `package.json`, deploy/publish scripts, `wrangler` config, GitHub workflows, migrations, Cursor/Codex/Claude files, and MCP config.
18
+ - `npx @getmarrow/install govern` now detects project signals such as `package.json`, deploy/publish scripts, platform config files, GitHub workflows, migrations, Cursor/Codex/Claude files, and MCP config.
19
19
  - When `MARROW_API_KEY` is present, the TUI asks Marrow for a recommended mode: `passive`, `pilot`, or `enforce`.
20
20
  - The TUI shows the exact reasons, confidence, and selected command before the user applies anything.
21
21
  - User choice is explicit. Marrow logs whether the recommendation was accepted or overridden, but it does not silently switch modes.
@@ -27,7 +27,7 @@ Example recommendation:
27
27
  Recommended mode: pilot
28
28
  Reason:
29
29
  - Node project detected
30
- - Cloudflare Worker detected
30
+ - Edge service detected
31
31
  - GitHub workflow detected
32
32
  - No owner approval policy configured yet
33
33
  ```
@@ -82,7 +82,7 @@ MARROW_API_KEY=mrw_live_xxx npx @getmarrow/install run --agent codex-prod --prof
82
82
  Gate a production action before the agent executes it:
83
83
 
84
84
  ```bash
85
- MARROW_API_KEY=mrw_live_xxx npx @getmarrow/install gate "deploy production worker after tests pass"
85
+ MARROW_API_KEY=mrw_live_xxx npx @getmarrow/install gate "deploy production service after tests pass"
86
86
  ```
87
87
 
88
88
  Wrap a real deploy, publish, merge, or migration command only after the agent has the required proof:
@@ -93,7 +93,7 @@ MARROW_API_KEY=mrw_live_xxx npx @getmarrow/install run \
93
93
  --type deploy \
94
94
  --profile production \
95
95
  --policy enforce \
96
- -- wrangler deploy
96
+ -- npm run deploy
97
97
  ```
98
98
 
99
99
  Use `--policy warn` for pilot mode and `--fail-open` only for non-production local workflows where Marrow should never block execution.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmarrow/install",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "Universal installer for Marrow passive agent setup.",
5
5
  "bin": {
6
6
  "marrow-install": "bin/marrow-install.js"