Bug Fixes
Prevent Creation of Empty CLAUDE.md Files (#809)
Previously, claude-mem would create new CLAUDE.md files in project directories even when there was no activity to display, cluttering codebases with empty context files showing only "No recent activity".
What changed: The updateFolderClaudeMdFiles function now checks if the formatted content contains no activity before writing. If a CLAUDE.md file doesn't already exist and there's nothing to show, it will be skipped entirely. Existing files will still be updated to reflect "No recent activity" if that's the current state.
Impact: Cleaner project directories - only folders with actual activity will have CLAUDE.md context files created.
Thanks to @maxmillienjr for this contribution!