v10.0.2
thedotmack/claude-memv10.0.2Feb 11, 2026by thedotmack
AI Summary
This release focuses on improving daemon stability and hook resilience in the Claude Code memory extension. Key fixes address silent worker process deaths from SIGHUP signals and unhandled errors, while also improving error classification for hook commands. A new statusline counter utility enables tracking observation counts per project.
Key Highlights
- Fixed daemon silent death issue - worker process now properly handles SIGHUP signals and unhandled errors
- Hook resilience improvements - fixed error classification for hook commands addressing issues #957, #923, #984, #987, and #1042
- Added project-scoped statusline counter utility (`statusline-counts.js`) for tracking observations per project
- TypeError order dependency fixed in error classifier
- Cross-platform process manager stability enhancements
New Features
- Project-scoped statusline counter utility - Added `statusline-counts.js` for tracking observation counts per project in the Claude Code status line
Full Release Notes
## Bug Fixes - **Prevent daemon silent death from SIGHUP + unhandled errors** — Worker process could silently die when receiving SIGHUP signals or encountering unhandled errors, leaving hooks without a backend. Now properly handles these signals and prevents silent crashes. - **Hook resilience and worker lifecycle improvements** — Comprehensive fixes for hook command error classification, addressing issues #957, #923, #984, #987, and #1042. Hooks now correctly distinguish between worker unavailability errors and other failures. - **Clarify TypeError order dependency in error classifier** — Fixed error classification logic to properly handle TypeError ordering edge cases. ## New Features - **Project-scoped statusline counter utility** — Added `statusline-counts.js` for tracking observation counts per project in the Claude Code status line. ## Internal - Added test coverage for hook command error classification and process manager - Worker service and MCP server lifecycle improvements - Process manager enhancements for better cross-platform stability ### Contributors - @rodboev — Hook resilience and worker lifecycle fixes (PR #1056)