一键导入
knowledge-graph
Interactive TUI knowledge graph viewer for the persistent memory database.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Interactive TUI knowledge graph viewer for the persistent memory database.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Download the persistent memory database from your self-hosted dashboard into the current repo. Use after cloning a repo on a new machine to restore accumulated sessions, knowledge, facts, and embeddings for RAG/context.
Manually upload the persistent memory database to your self-hosted dashboard. Useful after directly running add-fact or add-knowledge — for normal session work, /remember already auto-pushes.
Save the current work session to persistent memory for future context. Summarizes accomplishments, tracks files modified, and stores learnings for cross-session continuity.
Show token economics comparing usage with turbo-search vs without. Demonstrates actual savings from search-first approach.
Index the current project for optimized search with QMD semantic search and fast file suggestions. Run this when entering a new codebase or after significant changes. Saves 60-80% tokens on exploration tasks.
View statistics and recent entries from the persistent memory database. Shows session count, knowledge areas, facts, and recent activity.
| name | knowledge-graph |
| description | Interactive TUI knowledge graph viewer for 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 missing