Help us improve
Share bugs, ideas, or general feedback.
From claude-turbo-search
Visualizes entity relationships, timelines, statistics, and explores entities in the persistent memory database via interactive Go TUI CLI viewer. Invoke with /knowledge-graph.
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:knowledge-graphThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Interactive TUI that visualizes the entity relationships, timelines, and statistics from the persistent memory database.
Searches knowledge graph, loads session context, views history, checks status, and visualizes memory for recalling past decisions in coding sessions.
Traverses the knowledge graph to trace entity relationships, causal chains, co-access paths, and memory clusters. Use when exploring connections between concepts or drilling into related memories.
Traverses knowledge graph across memories, entities, and relationships for comprehensive context. Use before planning complex work, investigating concept connections, or answering 'what do you know about X'.
Share bugs, ideas, or general feedback.
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