Releases: remember-md/remember
Releases · remember-md/remember
v2.0.6 - Simple chronology check for old sessions
Added
- Simple chronology check for old sessions — Prevents data loss when processing backlog
IF session_date < file_last_modified → append contextELSE → normal update- Old sessions append missing context (don't replace existing)
- New sessions update normally (can replace/restructure)
- Works for: old backlog, multi-source overlap (Claude Code + OpenClaw), re-processing
Changed
- Simplified anti-conflict logic — Removed complex mode selection, deduplication checks
- Clear IF/ELSE rule based on chronology
- "When in doubt: append" principle
- No content checking, no duplicate detection — just simple chronology
- Clearer examples (old session appending after newer session processed)
See CHANGELOG.md for full details.
v1.5.1 — Claude Code Best Practices Refactor
What's Changed
Refactored for Claude Code Plugin Best Practices
- Progressive disclosure: SKILL.md files split into concise instructions +
reference.mdfor templates/tables (935→465 lines, -50% token usage) - Skill naming fixed:
brain:init→init,brain:process→process,brain:status→status(colons not valid per spec) - Commands:
/remember:init,/remember:process,/remember:status - Removed invalid
user-invocablefrontmatter - Removed redundant
brain-sessionskill (hook handles it)
Also includes v1.5.0 (REMEMBER.md)
- User-editable
REMEMBER.mdfor customizing brain behavior - 7 optional sections: Capture Rules, Processing, Custom Types, Connections, Language, Templates, Notes
- Full documentation guide at
docs/REMEMBER-md-guide.md
Full Changelog: v1.4.6...v1.5.1
v1.4.6 - Knowledge-Aware Processing
What's New in v1.4.6
🎯 Major Features
- Knowledge Index Builder () — Scans your brain and outputs structured markdown tables (People, Projects, Areas, Notes, Tasks, Journal stats). Supports mode for hook injection.
- Knowledge-Aware Pipeline — Both
/brain:processand brain dump now build a Resolution Map against the knowledge index before writing, preventing duplicates and enabling smart entity linking. - Edit-First Updates — Skills now instruct the AI to use the
Edittool for surgical updates to existing files instead of rewriting entire files. - Enhanced Pattern Detection — Persona now captures behavioral patterns: user corrections, stated preferences, repeated workflows, communication style, decision criteria, and code style.
⚡ Breaking Changes
- Complete skill rewrites —
skills/process/SKILL.mdandskills/remember/SKILL.mdhave been completely rewritten with clearer 5-step pipelines. - Multilingual support — Task and persona detection now uses AI semantic analysis instead of regex patterns.
🔧 Technical Changes
- Hook now runs
build_index.py --compactto inject full knowledge index (not just names) into brain dump context - Reduced
processskill from ~500 lines of mixed concerns to focused pipeline
Full Changelog: v1.4.5...v1.4.6
Remember v1.3.0
What's New
- Shared config resolver (config.py) for cleaner architecture
- Safe JSON construction in hooks (eliminates shell injection risks)
- Task routing: Focus (urgent) + Next Up (important) + project files (detailed)
- CONTRIBUTING.md with contribution guidelines
- GitHub Discussions enabled
- README optimized with competitive positioning (vs Mem.ai, Reflect)
- Friendly tone adjustments
Improvements
- Config resolution: 52 lines → 1 import
- Performance: -100ms per hook invocation
- Security: 3 shell injection vectors eliminated
- Backwards compatible 100%