Help us improve
Share bugs, ideas, or general feedback.
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.
npx claudepluginhub iagocavalcante/claude-turbo-search --plugin claude-turbo-searchHow 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.
Search, 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 the total-recall memory system: captures, stores, retrieves, and forgets memories across tiers. Activates on /total-recall:commands or when users ask about memory, knowledge bases, or eval.
Analyzes memory system state: health diagnostics, topic coverage scoring, knowledge gap detection, and filesystem validation. Use before new project phases or after backfill.
Share bugs, ideas, or general feedback.
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"