Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Perform semantic and keyword search on indexed codebases to find files quickly before reading, maintain persistent memory of sessions, knowledge, and facts across clones and machines, track token savings and activity stats via CLI dashboards, and visualize knowledge graphs, with optional sync to self-hosted web dashboard.
npx claudepluginhub iagocavalcante/claude-turbo-search --plugin claude-turbo-searchInteractive TUI knowledge graph viewer for the persistent memory database.
View statistics and recent entries from the persistent memory database. Shows session count, knowledge areas, facts, and recent activity.
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.
Local hybrid search for markdown notes and docs. Use BEFORE reading files to save tokens - search first, read only what's relevant. Provides 90% token savings on exploration tasks.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Local-first memory server — hybrid BM25+vector search, vault management, lint, and launchd lifecycle for project knowledge.
Persistent project memory for AI coding agents — semantic search, AST-aware chunking, dependency graphs, and conversation history
Structural codebase indexing for efficient navigation. Reduces token consumption by 60-80% through targeted line-range reads instead of full file scans.
Cognitive layer for Claude Code — code navigation, conversation recall, safety hooks, behavioral learning
Semantic code search for Claude Code. Automatically indexes your project and provides intelligent search capabilities.
Persistent memory system for AI coding sessions — cross-tool memory sharing with 6-dimensional hybrid search
Optimized file search and semantic indexing for large codebases in Claude Code.
/turbo-index does everything/qmd teaches Claude to search before reading files| Platform | Package Manager | Status |
|---|---|---|
| macOS | Homebrew | Fully supported |
| Ubuntu/Debian | apt | Fully supported |
| Fedora/RHEL | dnf | Fully supported |
| Arch Linux | pacman | Fully supported |
| Windows | - | Not supported (use WSL) |
Add the repository as a marketplace and install:
# Add the marketplace from GitHub (use #branch for specific branch)
claude plugin marketplace add iagocavalcante/claude-turbo-search
# Or install from a specific branch
claude plugin marketplace add "iagocavalcante/claude-turbo-search#feature/vector-search-rag"
# Install the plugin
claude plugin install claude-turbo-search@claude-turbo-search-dev
# Restart Claude Code to load the plugin
claude plugin install claude-turbo-search
When updates are available:
# Update the marketplace to fetch latest changes
claude plugin marketplace update claude-turbo-search-dev
# Update the plugin
claude plugin update claude-turbo-search@claude-turbo-search-dev
# Restart Claude Code to apply updates
claude plugin list
You should see:
❯ claude-turbo-search@claude-turbo-search-dev
Version: 1.0.0
Status: ✔ enabled
In any project, run:
/turbo-index
This will:
Running /turbo-index again will:
| Skill | Description |
|---|---|
/turbo-index | Set up optimized search indexing for a project |
/qmd | Search docs before reading to save tokens |
/remember | Save session context to persistent memory |
/memory-stats | View memory database statistics |
/token-stats | Show token economics and savings dashboard |
/knowledge-graph | Interactive TUI knowledge graph viewer for the memory database |
/push | Manually upload memory database to your self-hosted dashboard |
/pull | Download memory database from your self-hosted dashboard (fresh-clone restore) |
After indexing, use /qmd or just ask Claude to search:
"Search for authentication logic in this project"
"Find files related to database migrations"
Claude will use QMD to find relevant files before reading them, saving significant tokens.
Track your work across sessions:
# At end of session, save context to memory
/remember
# View accumulated knowledge
/memory-stats
# See token savings in action
/token-stats
The memory system uses SQLite FTS5 for instant search across all your saved sessions, knowledge, and facts.
Visualize entity relationships in your memory database:
# Full dashboard (stats + graph + timeline)
/knowledge-graph
# Individual views
/knowledge-graph stats # Counts, categories, top entities bar chart
/knowledge-graph graph # Entity tree + relation edges + co-occurrences
/knowledge-graph timeline # Chronological session/knowledge entries
/knowledge-graph explore auth # Drill into a specific entity
Uses Rich for colored TUI output, with automatic plain-text fallback. See docs/knowledge-graph-setup.md for detailed setup.
# Fast keyword search (use this first)
qmd search "your query" --files -n 10
# Semantic search (slower, use as fallback)
qmd vsearch "how does the login flow work"
# Get specific file content
qmd get "path/to/file.md"
Enable automatic context injection that searches QMD before each prompt:
# Simple mode - suggests relevant file paths (lightweight)
~/claude-turbo-search/scripts/setup-hooks.sh