@getmarrow/install 0.1.8 → 0.1.9
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 +19 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,13 +11,31 @@ npx @getmarrow/install --repair
|
|
|
11
11
|
npx @getmarrow/install doctor
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
## What's New in v0.1.
|
|
14
|
+
## What's New in v0.1.9
|
|
15
15
|
|
|
16
16
|
- First-run output now explains the value in agent/user language: your agent is no longer starting from zero.
|
|
17
17
|
- Self-test prints first proof: setup decision captured, outcome closed, runtime gate active, and risky work now gets a pre-action brief.
|
|
18
18
|
- Fresh accounts get a guided prompt to try immediately: "I am about to deploy to production. What should I check first?"
|
|
19
19
|
- Existing accounts/fleets show stronger proof when available: avoided mistakes, reused winning decisions, prevented risky actions, and token/time savings.
|
|
20
20
|
- Generated SDK passive runtime now fails soft if `@getmarrow/sdk` is missing and the installer prints the exact dependency fix.
|
|
21
|
+
- Docs now make the universal installer the default path; SDK and MCP are advanced/manual integration paths.
|
|
22
|
+
|
|
23
|
+
## Which Install Path Should I Use?
|
|
24
|
+
|
|
25
|
+
Start here unless you already know you need a lower-level integration:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npx @getmarrow/install --yes
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
The universal installer detects your local agent/runtime environment and wires the safest combination of MCP hooks, SDK passive runtime files, and agent instructions automatically. It also runs the self-test and prints first-run value proof.
|
|
32
|
+
|
|
33
|
+
Use the lower-level packages only when you need direct control:
|
|
34
|
+
|
|
35
|
+
- **SDK:** use `@getmarrow/sdk` when you are building a custom Node/TypeScript agent integration or wrapping your own tools, commands, deploys, and publishes in code.
|
|
36
|
+
- **MCP:** use `@getmarrow/mcp` when you want manual MCP server/hook setup for Claude Code, Claude Desktop, Cursor, or another MCP-compatible client.
|
|
37
|
+
|
|
38
|
+
The three packages are not three competing onboarding paths. `@getmarrow/install` is the front door; SDK and MCP are the implementation paths underneath it.
|
|
21
39
|
|
|
22
40
|
## Agent Value Proof Quickstart
|
|
23
41
|
|