@getmarrow/sdk 3.7.2 → 3.7.4
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 +21 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ await marrow.commit({ success: true, outcome: 'deployed successfully' });
|
|
|
45
45
|
| `run()` | Zero-ceremony: orient → think → commit |
|
|
46
46
|
| `auto()` | Fire-and-forget background logging |
|
|
47
47
|
|
|
48
|
-
### 🆕 v3.7.
|
|
48
|
+
### 🆕 v3.7.3 — Multi-API-Key Management
|
|
49
49
|
|
|
50
50
|
```typescript
|
|
51
51
|
const key = await marrow.createApiKey({ name: 'Prod Agent', key_type: 'live' });
|
|
@@ -80,6 +80,26 @@ const dashboard = await marrow.dashboard();
|
|
|
80
80
|
// { health, top_failures, workflows, saves, velocity, improvement }
|
|
81
81
|
```
|
|
82
82
|
|
|
83
|
+
## Full Feature Marketplace
|
|
84
|
+
|
|
85
|
+
| Category | Features |
|
|
86
|
+
|----------|----------|
|
|
87
|
+
| 🔁 **Decision Loop** | orient → think → commit with auto-logging |
|
|
88
|
+
| 🔐 **Multi-API-Keys** | Create, list, rotate, revoke scoped keys for fleets |
|
|
89
|
+
| 🧠 **Persistent Memory** | List, search, update, share, export, import (14 tools) |
|
|
90
|
+
| 📊 **Operator Dashboard** | Health, top failures, workflow status, velocity metrics |
|
|
91
|
+
| 📈 **Velocity Tracking** | Attempts/success, time-to-success, drift rate, improvement delta |
|
|
92
|
+
| 🌐 **Collective Intelligence** | Cross-account anonymous patterns, plain-English query |
|
|
93
|
+
| 🔄 **Enforced Workflows** | 24 templates across 8 industries, step-by-step with audit |
|
|
94
|
+
| ⚡ **Passive Mode** | autoWrap + wrapFetch — zero code auto-logging |
|
|
95
|
+
| 🛡️ **PII Protection** | Auto-strip emails, phones, keys from all responses |
|
|
96
|
+
| 🗄️ **Fleet Operations** | Agent registry, multi-user orgs, RBAC, SSE streaming |
|
|
97
|
+
| 📋 **Session Management** | Open/close with summaries, pattern reuse tracking |
|
|
98
|
+
| 🔗 **Causal Graphs** | Decision chaining — "What happened after this deploy?" |
|
|
99
|
+
| 📬 **Auto-Email** | First-decision welcome, 7-day recap, milestone notifications |
|
|
100
|
+
| 🔒 **Rate Limiting** | Per-endpoint, per-key, per-IP with tiered limits |
|
|
101
|
+
| 📜 **Audit Trail** | Immutable key operation logs with IP and timestamp |
|
|
102
|
+
|
|
83
103
|
## Full Documentation
|
|
84
104
|
|
|
85
105
|
📖 **Complete API reference, metrics, features, and examples:**
|