← ClaudeAtlas

grepai-config-referencelisted

Complete configuration reference for GrepAI. Use this skill when you need to understand all available configuration options.
NNIIKKKKII/grepai-skills · ★ 2 · AI & Automation · score 75
Install: claude install-skill NNIIKKKKII/grepai-skills
# GrepAI Configuration Reference This skill provides a complete reference for all GrepAI configuration options in `.grepai/config.yaml`. ## When to Use This Skill - Understanding all available configuration options - Optimizing GrepAI for your specific use case - Troubleshooting configuration issues - Setting up advanced configurations ## Configuration File Location ``` /your/project/.grepai/config.yaml ``` ## Complete Configuration Schema ```yaml version: 1 # ═══════════════════════════════════════════════════════════════ # EMBEDDER CONFIGURATION # Converts code text into vector embeddings # ═══════════════════════════════════════════════════════════════ embedder: # Provider: ollama | openai | lmstudio provider: ollama # Model name (depends on provider) # Ollama: nomic-embed-text, bge-m3, mxbai-embed-large # OpenAI: text-embedding-3-small, text-embedding-3-large # LM Studio: nomic-embed-text-v1.5, bge-small-en-v1.5 model: nomic-embed-text # API endpoint URL # Ollama default: http://localhost:11434 # LM Studio default: http://localhost:1234 # OpenAI: uses official API endpoint: http://localhost:11434 # Vector dimensions (auto-detected if omitted) # nomic-embed-text: 768 # text-embedding-3-small: 1536 # text-embedding-3-large: 3072 dimensions: 768 # API key (for OpenAI, supports env vars) api_key: ${OPENAI_API_KEY} # Parallel requests (OpenAI only, for speed) parallelism: 4 # ══════════════════════════════════════════════