md-first memory extraction framework for AI agents. Markdown is the single source of truth; SQLite holds state and LanceDB provides the rebuildable vector + BM25 + scalar index. The codebase follows a single-direction DDD layering (entrypoints -> service -> memory -> infra, with component / core / config cross-cutting) enforced by import-linter. Engineering surface: - Coding conventions in .claude/rules/ (path-scoped) and workflows in .claude/skills/ (/commit, /new-branch, /pr). - GitHub Actions CI runs make lint + test + integration; pre-commit mirrors the gates locally (ruff, hygiene hooks, gitlint commit-msg). - Commit messages follow Conventional Commits, enforced by gitlint. - make lint also enforces datetime two-zone discipline and OpenAPI drift.
1.5 KiB
1.5 KiB
description
| description |
|---|
| View EverMem debug logs to troubleshoot memory saving and retrieval issues |
EverMem Debug Log Viewer
View the EverMem debug log to troubleshoot issues.
Instructions
Show the user the recent debug log entries from /tmp/evermem-debug.log.
- First check if debug mode is enabled by looking for
EVERMEM_DEBUG=1in the plugin's.envfile - Read the last 50 lines of the debug log file
- If the file doesn't exist or is empty, inform the user how to enable debug mode
Actions
-
Check debug mode status:
grep "EVERMEM_DEBUG" /path/to/plugin/.env 2>/dev/null || echo "Not configured" -
Show recent logs:
tail -50 /tmp/evermem-debug.log 2>/dev/null || echo "No debug log found" -
Format the output for the user, highlighting:
[inject]entries for memory retrieval[store]entries for memory saving- Any errors or warnings
Output Format
📋 EverMem Debug Log
Status: Debug mode [ENABLED/DISABLED]
Log file: /tmp/evermem-debug.log
--- Recent Entries ---
[timestamp] [inject] ...
[timestamp] [store] ...
--- Tips ---
• Enable debug: Add EVERMEM_DEBUG=1 to .env
• Clear log: > /tmp/evermem-debug.log
• Live view: tail -f /tmp/evermem-debug.log
Additional Options
If the user specifies arguments:
clear- Clear the debug loglive- Show command for live monitoringfull- Show more lines (100+)inject- Filter to show only [inject] entriesstore- Filter to show only [store] entries