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.
How 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.
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 missingnpx claudepluginhub iagocavalcante/claude-turbo-search --plugin claude-turbo-searchRead-side memory operations: search knowledge graph, load session context, view decision timeline, visualize graph. Subcommands: search, load, history, viz, status.
Knowledge graph operations via Graphiti API. Search facts, add episodes, and extract entities/relationships.
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.