You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added
@agentsys/lib's repoIntel.queries module - typed wrappers over every agent-analyzer repo-intel query <type> subcommand (28 functions). Consumer plugins can now call require('@agentsys/lib').repoIntel.queries.hotspots(cwd, { limit: 20 }) instead of constructing raw CLI argv themselves. Functions returned in JSON match the binary's output shape per query.
4 new graph-derived query wrappers for the analyzer-graph crate landed in agent-analyzer v0.4.0:
communities(cwd) - lists Louvain-discovered file clusters (the natural feature areas, independent of directory layout)
boundaries(cwd, { limit }) - files bridging multiple communities by betweenness centrality (architectural seams - highest-leverage files for refactoring)
areaOf(cwd, file) - which community a file belongs to
ANALYZER_MIN_VERSION bumped 0.3.0 -> 0.4.0 to match agent-analyzer v0.4.0 which adds the graph subcommands. Older binaries get auto-upgraded on first call by lib/binary.ensureBinary().