From claude-turbo-search
Displays persistent memory database stats including session count, knowledge areas, facts, and recent activity. Run via /memory-stats with optional flags for facts, knowledge, or search.
npx claudepluginhub iagocavalcante/claude-turbo-search --plugin claude-turbo-searchThis skill uses the workspace's default tool permissions.
Show statistics and recent entries from the persistent memory database.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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"