con un clic
rag-index
Experimental RAG indexing utilities (scanner + indexer + retriever).
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Experimental RAG indexing utilities (scanner + indexer + retriever).
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Run one deterministic Vibe dispatcher step and print the selected prompt body.
Continuously assess and execute a repository's Vibe backlog. Use when the user invokes $vibe-run or asks Codex to inspect a repo, bootstrap or replenish .vibe/PLAN.md, and keep implementing and reviewing checkpoints until a real blocker or explicit stop.
Continuous runner for the continuous-documentation workflow across supported agents.
Continuous runner for the continuous-refactor workflow across supported agents.
Continuous runner for the continuous-test-generation workflow across supported agents.
Deterministic access to the Vibe prompt catalog.
| name | rag-index |
| description | Experimental RAG indexing utilities (scanner + indexer + retriever). |
Prototype utilities for building a repo index used by retrieval-augmented prompts. The workflow is scan -> index -> retrieve, with a one-shot pipeline for ad-hoc use.
scanner.py — recursive directory scanner that emits deterministic JSON manifestsindexer.py — chunk-aware SQLite index builder and lexical search (build, search)retrieve.py — prompt-context formatter that consumes chunk-level search results (retrieve, pipeline)python3 scanner.py <path1> <path2> --output manifest.json--file-types .py .md--max-depth 2--exclude "*.venv*" "*.git*"--stats to print exclusion countspython3 indexer.py build --manifest manifest.json --output index.dbpython3 indexer.py search "query" --index index.db --top-k 5path, rel_path, start_line, end_line, chunk_id, snippet)python3 retrieve.py "query" --index index.db --top-k 5--max-context-chars 8000 hard output budget--max-per-file 3 diversity cap--mode lex|sem|hybrid (sem uses TF-IDF cosine; hybrid blends lexical + semantic scores)python3 retrieve.py pipeline "query" --dirs <path1> <path2>--index /tmp/rag.db to persist index--max-depth 2--file-types .py .mdUse RAG when:
Do not use RAG when: