@getmarrow/sdk 3.2.0 → 3.2.1

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 +0 -21
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -98,27 +98,6 @@ await marrow.acceptDetectedWorkflow(detectedId);
98
98
  - `intelligence.collective` — anonymized insights aggregated from all Marrow accounts (k-anonymity ≥5)
99
99
  - `intelligence.team_context` — recent decisions from other sessions in the same account
100
100
 
101
- ### Since v3.1.0 (cumulative through v3.2.0)
102
-
103
- **v3.1.1** — Published fixes + README consolidation
104
-
105
- **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.
106
-
107
- **v3.1.3** — Fixed decisionId/commit flow — SDK now correctly unwraps API `{data: ...}` envelope across all methods.
108
-
109
- **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).
110
-
111
- **v3.1.5** — README / docs sync.
112
-
113
- **v3.2.0** — Passive Mode for SDK: `autoWrap()` and `wrapFetch()` helpers for auto-logging without per-call `wrap()` boilerplate. Match `@getmarrow/mcp@3.2.0`'s PostToolUse hook approach.
114
-
115
- Example:
116
- ```typescript
117
- const marrow = new MarrowClient(apiKey, { agentId: 'claims-triage-01' });
118
- const templates = await marrow.listTemplates({ industry: 'insurance' });
119
- const wf = await marrow.installTemplate('claims-triage');
120
- ```
121
-
122
101
  ---
123
102
 
124
103
  ## Active Intelligence — Marrow Intervenes Before Mistakes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmarrow/sdk",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
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",