@versatly/workgraph 0.2.0 → 1.0.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 +56 -2
- package/dist/chunk-OJ6KOGB2.js +2638 -0
- package/dist/chunk-R2MLGBHB.js +6043 -0
- package/dist/cli.js +855 -17
- package/dist/index.d.ts +921 -12
- package/dist/index.js +43 -7
- 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/dist/chunk-XUMA4O2Z.js +0 -2817
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Agent-first workgraph workspace for multi-agent collaboration.
|
|
|
18
18
|
- Multi-filter primitive query (`workgraph query ...`)
|
|
19
19
|
- Core + QMD-compatible keyword search (`workgraph search ...`)
|
|
20
20
|
- Obsidian Kanban board generation/sync (`workgraph board generate|sync`)
|
|
21
|
-
- Wiki-link graph
|
|
21
|
+
- Wiki-link graph intelligence (`workgraph graph index|hygiene|neighborhood|impact|context|edges|export`)
|
|
22
22
|
- Policy party registry and sensitive transition gates
|
|
23
23
|
- Programmatic dispatch contract (`workgraph dispatch ...`) with explicit status transitions
|
|
24
24
|
- Trigger dispatch bridge (`workgraph trigger fire ...`) with idempotency keying
|
|
@@ -66,11 +66,21 @@ workgraph search "auth" --mode auto --json
|
|
|
66
66
|
workgraph checkpoint "Completed API layer" --next "implement tests" --actor agent-worker --json
|
|
67
67
|
workgraph board generate --output "ops/Workgraph Board.md" --json
|
|
68
68
|
workgraph graph hygiene --json
|
|
69
|
-
workgraph graph
|
|
69
|
+
workgraph graph neighborhood ship-feature --depth 2 --json
|
|
70
|
+
workgraph graph impact ship-feature --json
|
|
71
|
+
workgraph graph context ship-feature --budget 2000 --json
|
|
72
|
+
workgraph graph edges ship-feature --json
|
|
73
|
+
workgraph graph export ship-feature --depth 2 --format md --json
|
|
70
74
|
workgraph dispatch create "Review blockers" --actor agent-lead --json
|
|
71
75
|
workgraph dispatch mark run_123 --status succeeded --output "Review complete" --actor agent-lead --json
|
|
76
|
+
workgraph dispatch create-execute "Close all ready threads in platform space" \
|
|
77
|
+
--actor agent-lead \
|
|
78
|
+
--agents agent-a,agent-b,agent-c \
|
|
79
|
+
--space spaces/platform \
|
|
80
|
+
--json
|
|
72
81
|
workgraph trigger fire triggers/escalate-blocked.md --event-key "thread-blocked-001" --actor agent-lead --json
|
|
73
82
|
workgraph onboarding update onboarding/onboarding-for-agent-architect.md --status paused --actor agent-lead --json
|
|
83
|
+
workgraph mcp serve -w /path/to/workspace --actor agent-ops --read-only
|
|
74
84
|
workgraph ledger show --count 20 --json
|
|
75
85
|
workgraph command-center --output "ops/Command Center.md" --json
|
|
76
86
|
workgraph bases generate --refresh-registry --json
|
|
@@ -143,6 +153,28 @@ workgraph bases generate --json
|
|
|
143
153
|
workgraph bases generate --all --refresh-registry --json
|
|
144
154
|
```
|
|
145
155
|
|
|
156
|
+
### Graph intelligence workflows
|
|
157
|
+
|
|
158
|
+
```bash
|
|
159
|
+
# Build/refresh graph index first (optional but useful)
|
|
160
|
+
workgraph graph index --json
|
|
161
|
+
|
|
162
|
+
# Multi-hop neighborhood around a primitive slug/path
|
|
163
|
+
workgraph graph neighborhood ship-feature --depth 2 --json
|
|
164
|
+
|
|
165
|
+
# Reverse-link blast radius (what references this primitive)
|
|
166
|
+
workgraph graph impact ship-feature --json
|
|
167
|
+
|
|
168
|
+
# Auto-assemble markdown context bundle within token budget (chars/4)
|
|
169
|
+
workgraph graph context ship-feature --budget 2000 --json
|
|
170
|
+
|
|
171
|
+
# Inspect typed relationship edges for one primitive
|
|
172
|
+
workgraph graph edges ship-feature --json
|
|
173
|
+
|
|
174
|
+
# Export a markdown subgraph for handoff/sharing
|
|
175
|
+
workgraph graph export ship-feature --depth 2 --format md --json
|
|
176
|
+
```
|
|
177
|
+
|
|
146
178
|
### Ledger query, blame, and tamper detection
|
|
147
179
|
|
|
148
180
|
```bash
|
|
@@ -171,6 +203,28 @@ workgraph skill history workgraph-manual --limit 10 --json
|
|
|
171
203
|
workgraph skill diff workgraph-manual --json
|
|
172
204
|
```
|
|
173
205
|
|
|
206
|
+
### Optional Clawdapus integration
|
|
207
|
+
|
|
208
|
+
List supported optional integrations:
|
|
209
|
+
|
|
210
|
+
```bash
|
|
211
|
+
workgraph integration list --json
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
Install by integration ID (extensible pattern for future integrations):
|
|
215
|
+
|
|
216
|
+
```bash
|
|
217
|
+
workgraph integration install clawdapus \
|
|
218
|
+
--actor agent-architect \
|
|
219
|
+
--json
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
Refresh from upstream later (or use the `integration clawdapus` alias):
|
|
223
|
+
|
|
224
|
+
```bash
|
|
225
|
+
workgraph integration install clawdapus --force --actor agent-architect --json
|
|
226
|
+
```
|
|
227
|
+
|
|
174
228
|
## Legacy memory stacks vs Workgraph primitives
|
|
175
229
|
|
|
176
230
|
`@versatly/workgraph` is **execution coordination only**.
|