원클릭으로
rag-index
Experimental RAG indexing utilities (scanner + indexer + retriever).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Experimental RAG indexing utilities (scanner + indexer + retriever).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| 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:
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.