@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.
- package/README.md +13 -14
- 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
|
-
|
|
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
|
-
|
|
103
|
+
## Available Templates
|
|
108
104
|
|
|
109
|
-
|
|
105
|
+
24 pre-built workflow templates across 8 industries. Browse via `listTemplates()` and install with `installTemplate(slug)`.
|
|
110
106
|
|
|
111
|
-
**
|
|
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
|
-
|
|
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
|
|
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
|