← ClaudeAtlas

turbo-indexlisted

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.
ZAKZOUK406/claude-turbo-search · ★ 1 · Data & Documents · score 74
Install: claude install-skill ZAKZOUK406/claude-turbo-search
# Turbo Index You are running the turbo-index skill to set up optimized search for this project. ## Instructions Follow these phases in order. Use the Bash tool to run commands. Report progress to the user after each phase. ### Phase 1: Check Dependencies Run the dependency checker: ```bash ~/.claude/plugins/*/claude-turbo-search/scripts/install-deps.sh --check-only 2>/dev/null || \ ~/claude-turbo-search/scripts/install-deps.sh --check-only 2>/dev/null || \ echo "DEPS_SCRIPT_NOT_FOUND" ``` If dependencies are missing, ask the user if they want to install them. If yes, run without `--check-only`: ```bash ~/.claude/plugins/*/claude-turbo-search/scripts/install-deps.sh 2>/dev/null || \ ~/claude-turbo-search/scripts/install-deps.sh 2>/dev/null ``` ### Phase 2: Global Setup (if needed) Check if file-suggestion.sh exists in ~/.claude/: ```bash [ -f ~/.claude/file-suggestion.sh ] && echo "FILE_SUGGESTION_EXISTS" || echo "FILE_SUGGESTION_MISSING" ``` If missing, run the setup scripts: ```bash # Setup file suggestion ~/.claude/plugins/*/claude-turbo-search/scripts/setup-file-suggestion.sh 2>/dev/null || \ ~/claude-turbo-search/scripts/setup-file-suggestion.sh 2>/dev/null # Setup QMD MCP server ~/.claude/plugins/*/claude-turbo-search/scripts/setup-mcp.sh 2>/dev/null || \ ~/claude-turbo-search/scripts/setup-mcp.sh 2>/dev/null ``` ### Phase 3: Run Cartographer (if needed) Check if codebase map exists and its age: ```bash if [ -f docs/CODEBASE_MAP.md ]; then #