v12.2.3

thedotmack/claude-memv12.2.3Apr 19, 2026by thedotmack

AI Summary

Bug fix release that eliminates unnecessary parser warnings on normal observation responses. The warning was incorrectly firing on every normal observation turn after a refactor.

Key Highlights

  • Removed false warning about observation tags in summary responses
  • Gated observation-on-summary path on `coerceFromObservation`
  • Fixed inherited warning from #1345 that no longer applied after #1633 refactor

Full Release Notes

## Fixed

- **Parser: stop warning on normal observation responses (#2074).** Eliminated the `PARSER Summary response contained <observation> tags instead of <summary> — prompt conditioning may need strengthening` warning that fired on every normal observation turn. The warning was inherited from #1345 when `parseSummary` was only called after summary prompts; after #1633's refactor it runs on every response, so the observation-only fallthrough always tripped. Gated the entire observation-on-summary path on `coerceFromObservation` so only genuine summary-turn coercion failures log.

**Full diff:** https://github.com/thedotmack/claude-mem/compare/v12.2.2...v12.2.3