@frumu/tandem-client 0.4.5 → 0.4.6
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 +19 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -124,6 +124,25 @@ await client.routines.create({
|
|
|
124
124
|
});
|
|
125
125
|
```
|
|
126
126
|
|
|
127
|
+
### `client.workflowPlans`
|
|
128
|
+
|
|
129
|
+
```typescript
|
|
130
|
+
const started = await client.workflowPlans.chatStart({
|
|
131
|
+
prompt: "Create a release checklist automation",
|
|
132
|
+
planSource: "chat",
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
const updated = await client.workflowPlans.chatMessage({
|
|
136
|
+
planId: started.plan.plan_id!,
|
|
137
|
+
message: "Add a smoke-test step before rollout.",
|
|
138
|
+
});
|
|
139
|
+
|
|
140
|
+
await client.workflowPlans.apply({
|
|
141
|
+
planId: updated.plan.plan_id,
|
|
142
|
+
creatorId: "operator-1",
|
|
143
|
+
});
|
|
144
|
+
```
|
|
145
|
+
|
|
127
146
|
### `client.mcp`
|
|
128
147
|
|
|
129
148
|
| Method | Description |
|