Releases: PatrickSys/codebase-context
Releases · PatrickSys/codebase-context
v1.6.2
[1.6.2] - 2026-02-17
Stripped it down for token efficiency, moved CLI code out of the protocol layer, and cleared structural debt.
Changed
- Search output:
trend: "Stable"is no longer emitted (only Rising/Declining carry signal). Added a compacttypefield (service:data) merging componentType and layer into 2 tokens. RemovedlastModifiedconsidered noise. - searchQuality: now includes
hint(for next-step suggestion) when status islow_confidence, so agents get actionable guidance without a second tool call. - Tool description: shortened to 2 actionable sentences, removed reference to
editPreflight(which didn't exist in output).intentparameter is now discoverable on first scan. - CLI extraction:
handleMemoryClimoved fromsrc/index.tstosrc/cli.ts. Protocol file is routing only. - Angular self-registration:
registerComplementaryPatterns('reactivity', ...)moved fromsrc/index.tsintoAngularAnalyzerconstructor. Framework patterns belong in their analyzer.
Added
AGENTS.mdLessons Learned section - captures behavioral findings from the 0216 eval: AI fluff loop, self-eval bias, static data as noise, agents don't read past first line.- Release Checklist in
AGENTS.md: CHANGELOG + README + capabilities.md + tests before any version bump.
v1.6.1
v1.6.0
v1.5.1
v1.5.0
1.5.0 (2026-02-08)
Added
- Preflight evidence lock:
search_codebaseedit/refactor/migrate intents now return risk-aware preflight guidance with evidence lock scoring, impact candidates, preferred/avoid patterns, and related memories. (#21) - Trust-aware memory handling: Git-aware memory pattern support and confidence decay so stale or malformed evidence is surfaced as lower-confidence context instead of trusted guidance. (#21)
Changed
- Search ranking: Removed framework-specific anchor/query promotion heuristics from core ranking flow to keep retrieval behavior generic across codebases. (#22)
- Search transparency:
search_codebasenow returnssearchQualitywith confidence and diagnostic signals when retrieval looks ambiguous. (#22) - Incremental indexing state: Persist indexing counters to
indexing-stats.jsonand restore them on no-op incremental runs to keep status reporting accurate on large codebases. (#22) - Docs: Updated README performance section to reflect shipped incremental refresh mode (
incrementalOnly).
Fixed
- No-op incremental stats drift: Fixed under-reported
indexedFilesandtotalChunksafter no-change incremental refreshes by preferring persisted stats over capped index snapshots. (#22) - Memory date validation: Invalid memory timestamps now degrade to stale evidence rather than being surfaced as semi-trusted data. (#21)