v2026.3.2 — Service Release: Index Multi-Graph Fixes & Dev Mode CLI Delegation
Service release fixing three aiwg index bugs and upgrading dev mode to delegate the full CLI to your local build.
What's Fixed
aiwg index stats/query/deps without --graph failed with "No artifact index found" — all three commands were checking the legacy .aiwg/.index/metadata.json root path instead of the graph subdirectories (project/, codebase/). Now they check graph subdirs first with legacy fallback.
--use-dev only changed framework content — the CLI binary still ran npm-installed code. Now aiwg delegates all subcommands to your dev repo's src/cli/facade.mjs. After npm run build, every aiwg command runs your local code immediately.
--use-dev always used npm package root as path — now accepts an explicit path argument (aiwg --use-dev . or aiwg --use-dev /path/to/repo).
What's New
Framework graph — index agentic/code/ + docs/ explicitly:
aiwg index build --graph framework # 1,625 artifacts
aiwg index query "topic" --graph framework --jsonMulti-graph docs — docs/cli-reference.md now covers the --graph flag on all index subcommands, graph types table, and new output structure.
Install
npm install -g aiwg@2026.3.2Refs
Fixes #425 | Roadmap: #426 (extensible user-defined graphs)