@getmarrow/sdk 3.2.0 → 3.2.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.
Files changed (2) hide show
  1. package/README.md +13 -14
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -98,29 +98,28 @@ 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.
101
+ ---
106
102
 
107
- **v3.1.3** Fixed decisionId/commit flow — SDK now correctly unwraps API `{data: ...}` envelope across all methods.
103
+ ## Available Templates
108
104
 
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).
105
+ 24 pre-built workflow templates across 8 industries. Browse via `listTemplates()` and install with `installTemplate(slug)`.
110
106
 
111
- **v3.1.5** README / docs sync.
107
+ - **Insurance (4):** `claims-triage`, `fraud-review`, `underwriting-decision`, `complaint-escalation`
108
+ - **Healthcare (4):** `patient-triage`, `clinical-documentation`, `prior-authorization`, `coding-audit`
109
+ - **E-commerce (3):** `order-fulfillment`, `refund-approval`, `return-processing`
110
+ - **Legal (3):** `contract-review`, `case-triage`, `document-discovery`
111
+ - **SaaS (6):** `code-review-deploy`, `incident-response`, `feature-rollout`, `ticket-triage`, `escalation-flow`, `lead-qualify`
112
+ - **Fintech (2):** `etl-pipeline`, `approval-flow`
113
+ - **Media (1):** `content-publish`
114
+ - **Enterprise (1):** `change-management`
112
115
 
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.
116
+ Full catalog with descriptions and step-by-step details: [getmarrow.ai/docs#template-marketplace](https://getmarrow.ai/docs/#template-marketplace)
114
117
 
115
- Example:
116
118
  ```typescript
117
- const marrow = new MarrowClient(apiKey, { agentId: 'claims-triage-01' });
118
119
  const templates = await marrow.listTemplates({ industry: 'insurance' });
119
- const wf = await marrow.installTemplate('claims-triage');
120
+ const workflow = await marrow.installTemplate('claims-triage');
120
121
  ```
121
122
 
122
- ---
123
-
124
123
  ## Active Intelligence — Marrow Intervenes Before Mistakes
125
124
 
126
125
  ### Auto-Warn on Orient
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmarrow/sdk",
3
- "version": "3.2.0",
3
+ "version": "3.2.2",
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",