Skip to content

v2026.3.2 — Service Release: Index Multi-Graph Fixes & Dev Mode CLI Delegation

Choose a tag to compare

@jmagly jmagly released this 04 Mar 03:09
· 2035 commits to main since this release
v2026.3.2
ebc24ba

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 --json

Multi-graph docsdocs/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.2

Refs

Fixes #425 | Roadmap: #426 (extensible user-defined graphs)