@versatly/workgraph 0.3.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 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 indexing and hygiene reports (`workgraph graph index|hygiene`)
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,7 +66,11 @@ 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 neighbors context-nodes/context-node-1 --json
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
72
76
  workgraph dispatch create-execute "Close all ready threads in platform space" \
@@ -149,6 +153,28 @@ workgraph bases generate --json
149
153
  workgraph bases generate --all --refresh-registry --json
150
154
  ```
151
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
+
152
178
  ### Ledger query, blame, and tamper detection
153
179
 
154
180
  ```bash