From claude-turbo-search
Visualizes entity relationships, timelines, and statistics from Claude Code's persistent memory database via interactive TUI. Invoke /knowledge-graph to explore graphs, drill into entities, or view stats.
npx claudepluginhub iagocavalcante/claude-turbo-search --plugin claude-turbo-searchThis skill uses the workspace's default tool permissions.
Interactive TUI that visualizes the entity relationships, timelines, and statistics 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.
Interactive TUI that visualizes the entity relationships, timelines, and statistics from the persistent memory database.
When the user invokes /knowledge-graph, run the Go CLI viewer.
PLUGIN_DIR="${PLUGIN_DIR:-$(find ~/.claude/plugins -name "claude-turbo-search" -type d 2>/dev/null | head -1)}"
[ -z "$PLUGIN_DIR" ] && PLUGIN_DIR="$HOME/claude-turbo-search"
"$PLUGIN_DIR/memory/memory-db.sh" knowledge-graph [subcommand] [entity]
Map user arguments to subcommands:
/knowledge-graph — All views combined (default)/knowledge-graph graph — Entity relationship graph with tree and edges/knowledge-graph timeline — Chronological session/knowledge timeline/knowledge-graph stats — Statistics dashboard with counts and bar charts/knowledge-graph explore <name> — Drill-down into a specific entity# Examples:
"$PLUGIN_DIR/memory/memory-db.sh" knowledge-graph
"$PLUGIN_DIR/memory/memory-db.sh" knowledge-graph stats
"$PLUGIN_DIR/memory/memory-db.sh" knowledge-graph graph
"$PLUGIN_DIR/memory/memory-db.sh" knowledge-graph timeline
"$PLUGIN_DIR/memory/memory-db.sh" knowledge-graph explore auth
The command renders colored ANSI output directly to the terminal. Present the output as-is to the user. If the user asks about specific entities or relationships, use the explore subcommand to drill down.
/remember first if the database is emptymemory-db.sh init-metadata if entity tables are missing