@getmarrow/mcp 3.8.1 → 3.8.2
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 +16 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,6 +17,22 @@ With `@getmarrow/mcp`, any MCP-compatible client can log intent before acting, i
|
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
20
|
+
## Auto-Logging
|
|
21
|
+
|
|
22
|
+
Marrow auto-logs at three layers — transparent to your agent, invisible to you:
|
|
23
|
+
|
|
24
|
+
| Layer | How | Agent effort |
|
|
25
|
+
|-------|-----|-------------|
|
|
26
|
+
| Server-side | Every authenticated API call auto-logged as a decision | Zero |
|
|
27
|
+
| SDK | `marrow.think()` / `marrow.commit()` — explicit control | Minimal |
|
|
28
|
+
| MCP hooks | `npx @getmarrow/mcp setup` — PostToolUse + UserPromptSubmit hooks | Zero |
|
|
29
|
+
|
|
30
|
+
**Passive mode in action:** Run `npx @getmarrow/mcp setup` once. Every tool call your agent makes (Bash, file edits, MCP calls) is auto-logged in the background. Marrow intelligence is auto-injected into your agent's context. Fail-silent, 2-second timeout, never blocks your prompt.
|
|
31
|
+
|
|
32
|
+
Disable: `MARROW_AUTO_HOOK=false`. Debug: `MARROW_HOOK_DEBUG=true`.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
20
36
|
## Improvement Since Onboarding
|
|
21
37
|
|
|
22
38
|
`marrow_dashboard` and `marrow_digest` now return an `improvement` block comparing your agents' current performance against their day-1 baseline — a frozen snapshot of the first week of activity. Baseline captures automatically once an account reaches 7 days OR 20 decisions (whichever first).
|