@getmarrow/sdk 3.2.1 → 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 +20 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -100,6 +100,26 @@ await marrow.acceptDetectedWorkflow(detectedId);
|
|
|
100
100
|
|
|
101
101
|
---
|
|
102
102
|
|
|
103
|
+
## Available Templates
|
|
104
|
+
|
|
105
|
+
24 pre-built workflow templates across 8 industries. Browse via `listTemplates()` and install with `installTemplate(slug)`.
|
|
106
|
+
|
|
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`
|
|
115
|
+
|
|
116
|
+
Full catalog with descriptions and step-by-step details: [getmarrow.ai/docs#template-marketplace](https://getmarrow.ai/docs/#template-marketplace)
|
|
117
|
+
|
|
118
|
+
```typescript
|
|
119
|
+
const templates = await marrow.listTemplates({ industry: 'insurance' });
|
|
120
|
+
const workflow = await marrow.installTemplate('claims-triage');
|
|
121
|
+
```
|
|
122
|
+
|
|
103
123
|
## Active Intelligence — Marrow Intervenes Before Mistakes
|
|
104
124
|
|
|
105
125
|
### Auto-Warn on Orient
|