All notable changes to agent-core are documented here.
Format follows Keep a Changelog.
0.4.0 - 2026-03-22
- Bumped
ANALYZER_MIN_VERSIONtov0.3.0inlib/binary/version.js. v0.3.0 adds Phase 2-4 of agent-analyzer: AST symbol extraction (6 languages), project metadata, and doc-code cross-references. New query subcommands available:symbols,dependents,stale-docs,project-info.
0.3.0 - 2026-03-16
- Removed misleading
AUTO-GENERATED - do not edit directlycomment fromtemplates/CLAUDE.md.tmpl. Plugin repos are expected to edit the generated file; the comment was incorrect. - Removed redundant
Be conciseclause from rule 8 in the template (flagged by agnix as redundant).
0.2.0 - 2026-03-15
lib/binary/- Binary resolver for theagent-analyzerRust binary. Handles lazy download from GitHub releases at runtime (no postinstall hook). Supports 5 platform targets,tar.gz/zipextraction, version checking, and auto-upgrade. Uses only Node.js built-ins; zero external npm dependencies. ExportsensureBinary,runAnalyzer, and related utilities.lib/collectors/git.js- Git history collector that runsagent-analyzer repo-intel initand extracts health metrics: hotspots, contributors, AI ratio, bus factor, conventions, and release info. Registered in thecollect()dispatch inlib/collectors/index.js.
- Updated
lib/collectors/git.jsfor theRepoIntelDataschema: addedrecentChangesto hotspot output andconfidencefield toaiAttribution.
0.1.1 - 2026-03-06
- Added
agent-knowledgeas a git submodule, centralizing the knowledge base in agent-sh/agent-knowledge and sharing it across all plugin repos.
0.1.0 - 2026-02-22
- CI workflow calling the reusable workflow from
agent-sh/.github. - Automated Claude Code PR review (restricted to owner/member/collaborator, max 3 runs per PR).
- Claude Code
@mentionssupport in PR comments. - Pre-push hook that runs tests before push.
- agnix validation step in the CI pipeline.
- CLAUDE.md sync: template (
templates/CLAUDE.md.tmpl) and generator script (scripts/generate-claudemd.js) that produce a consistentCLAUDE.mdfor each consumer plugin repo during the sync workflow. - Extended sync matrix to all 12 graduated plugin repos.
0.0.1 - 2026-02-21
- Initial seed:
lib/directory ported from agentsys, covering platform detection, pattern matching, workflow state, collectors, adapters, and utilities. - Sync workflow that triggers
lib/propagation to consumer repos on push tomain.