@getmarrow/sdk 3.1.4 → 3.1.5

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 +20 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -23,7 +23,7 @@ That's fine for a toy. It's a problem for anything real.
23
23
 
24
24
  ---
25
25
 
26
- ## What's New in v3.1.0
26
+ ## What's New in v3.1.5
27
27
 
28
28
  **Operator visibility + auto-intelligence — agents get smarter, operators can finally see it.**
29
29
 
@@ -62,6 +62,25 @@ await marrow.acceptDetectedWorkflow(detectedId);
62
62
  - `intelligence.collective` — anonymized insights aggregated from all Marrow accounts (k-anonymity ≥5)
63
63
  - `intelligence.team_context` — recent decisions from other sessions in the same account
64
64
 
65
+ ### Since v3.1.0 (cumulative through v3.1.5)
66
+
67
+ **v3.1.1** — Published fixes + README consolidation
68
+
69
+ **v3.1.2** — Agent identity: new `agentId` option on MarrowClient constructor. Adds X-Marrow-Agent-Id header to all requests so decisions tag your specific agent for fleet dashboards.
70
+
71
+ **v3.1.3** — Fixed decisionId/commit flow — SDK now correctly unwraps API `{data: ...}` envelope across all methods.
72
+
73
+ **v3.1.4** — Template marketplace methods: `listTemplates(filters?)`, `getTemplate(slug)`, `installTemplate(slug)`. Browse and install pre-built workflow templates for your industry (insurance, healthcare, ecommerce, legal, saas, fintech, media, enterprise — 24 templates total).
74
+
75
+ **v3.1.5** — README / docs sync (this release).
76
+
77
+ Example:
78
+ ```typescript
79
+ const marrow = new MarrowClient(apiKey, { agentId: 'claims-triage-01' });
80
+ const templates = await marrow.listTemplates({ industry: 'insurance' });
81
+ const wf = await marrow.installTemplate('claims-triage');
82
+ ```
83
+
65
84
  ---
66
85
 
67
86
  ## Active Intelligence — Marrow Intervenes Before Mistakes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmarrow/sdk",
3
- "version": "3.1.4",
3
+ "version": "3.1.5",
4
4
  "description": "Your go-to memory provider for all agents, for any AI model.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",