@versatly/workgraph 0.2.0 → 0.3.0
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 +28 -0
- package/dist/{chunk-XUMA4O2Z.js → chunk-65ZMX2WM.js} +1049 -1020
- package/dist/chunk-E3QU5Y53.js +1062 -0
- package/dist/cli.js +135 -10
- package/dist/index.d.ts +136 -3
- package/dist/index.js +22 -8
- package/dist/mcp-server-fU6U6ht8.d.ts +20 -0
- package/dist/mcp-server.d.ts +2 -0
- package/dist/mcp-server.js +8 -0
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -69,8 +69,14 @@ workgraph graph hygiene --json
|
|
|
69
69
|
workgraph graph neighbors context-nodes/context-node-1 --json
|
|
70
70
|
workgraph dispatch create "Review blockers" --actor agent-lead --json
|
|
71
71
|
workgraph dispatch mark run_123 --status succeeded --output "Review complete" --actor agent-lead --json
|
|
72
|
+
workgraph dispatch create-execute "Close all ready threads in platform space" \
|
|
73
|
+
--actor agent-lead \
|
|
74
|
+
--agents agent-a,agent-b,agent-c \
|
|
75
|
+
--space spaces/platform \
|
|
76
|
+
--json
|
|
72
77
|
workgraph trigger fire triggers/escalate-blocked.md --event-key "thread-blocked-001" --actor agent-lead --json
|
|
73
78
|
workgraph onboarding update onboarding/onboarding-for-agent-architect.md --status paused --actor agent-lead --json
|
|
79
|
+
workgraph mcp serve -w /path/to/workspace --actor agent-ops --read-only
|
|
74
80
|
workgraph ledger show --count 20 --json
|
|
75
81
|
workgraph command-center --output "ops/Command Center.md" --json
|
|
76
82
|
workgraph bases generate --refresh-registry --json
|
|
@@ -171,6 +177,28 @@ workgraph skill history workgraph-manual --limit 10 --json
|
|
|
171
177
|
workgraph skill diff workgraph-manual --json
|
|
172
178
|
```
|
|
173
179
|
|
|
180
|
+
### Optional Clawdapus integration
|
|
181
|
+
|
|
182
|
+
List supported optional integrations:
|
|
183
|
+
|
|
184
|
+
```bash
|
|
185
|
+
workgraph integration list --json
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
Install by integration ID (extensible pattern for future integrations):
|
|
189
|
+
|
|
190
|
+
```bash
|
|
191
|
+
workgraph integration install clawdapus \
|
|
192
|
+
--actor agent-architect \
|
|
193
|
+
--json
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
Refresh from upstream later (or use the `integration clawdapus` alias):
|
|
197
|
+
|
|
198
|
+
```bash
|
|
199
|
+
workgraph integration install clawdapus --force --actor agent-architect --json
|
|
200
|
+
```
|
|
201
|
+
|
|
174
202
|
## Legacy memory stacks vs Workgraph primitives
|
|
175
203
|
|
|
176
204
|
`@versatly/workgraph` is **execution coordination only**.
|