From claude-turbo-search
Displays statistics and recent entries from Claude Code's persistent memory database, showing session counts, knowledge areas, facts, and activity. Invoke via /memory-stats with optional flags for facts, knowledge, or search.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-turbo-search:memory-statsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Show statistics and recent entries from the persistent memory database.
Show statistics and recent entries from the persistent memory database.
When the user invokes /memory-stats, run these commands to show memory information:
PLUGIN_DIR="${PLUGIN_DIR:-$HOME/claude-turbo-search}"
"$PLUGIN_DIR/memory/memory-db.sh" stats
"$PLUGIN_DIR/memory/memory-db.sh" recent 5
Present the information clearly:
## Memory Database
| Type | Count |
|------|-------|
| Sessions | X |
| Knowledge areas | Y |
| Facts | Z |
## Recent Sessions
1. [date] - Summary of session 1
2. [date] - Summary of session 2
...
The user might ask for specific views:
/memory-stats facts - Show all facts/memory-stats knowledge - Show all knowledge areas/memory-stats search <query> - Search memoryFor these, use:
# Search
"$PLUGIN_DIR/memory/memory-db.sh" search "query"
npx claudepluginhub iagocavalcante/claude-turbo-search --plugin claude-turbo-searchSearch, query, view stats, and manage Claude's persistent memory in a portable .claude/mind.mv2 file using Node.js scripts. Recalls discoveries, decisions, and solutions.
Manages total-recall memory system: search, store, forget memories, inspect tiers, run eval, and configure. Automatically activates on memory-related queries.
Analyzes memory system state: health diagnostics, topic coverage scoring, knowledge gap detection, and filesystem validation. Use before new project phases or after backfill.