grepai-init
Original:🇺🇸 English
Translated
Initialize GrepAI in a project. Use this skill when setting up GrepAI for the first time in a codebase.
8installs
Added on
NPX Install
npx skill4agent add yoanbernabeu/grepai-skills grepai-initTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →GrepAI Init
This skill covers the command and project initialization.
grepai initWhen to Use This Skill
- Setting up GrepAI in a new project
- Understanding what creates
grepai init - Customizing initial configuration
- Troubleshooting initialization issues
Basic Usage
bash
cd /path/to/your/project
grepai initWhat Init Creates
Running creates the directory with:
grepai init.grepai/.grepai/
├── config.yaml # Configuration file
├── index.gob # Vector index (created by watch)
└── symbols.gob # Symbol index for trace (created by watch)Default Configuration
The generated :
config.yamlyaml
version: 1
embedder:
provider: ollama
model: nomic-embed-text
endpoint: http://localhost:11434
store:
backend: gob
chunking:
size: 512
overlap: 50
watch:
debounce_ms: 500
trace:
mode: fast
enabled_languages:
- .go
- .js
- .ts
- .jsx
- .tsx
- .py
- .php
- .c
- .h
- .cpp
- .hpp
- .cc
- .cxx
- .rs
- .zig
- .cs
- .pas
- .dpr
ignore:
- .git
- .grepai
- node_modules
- vendor
- target
- __pycache__
- dist
- buildUnderstanding Default Settings
Embedder Settings
| Setting | Default | Purpose |
|---|---|---|
| | Local embedding generation |
| | 768-dimension model |
| | Ollama API URL |
Store Settings
| Setting | Default | Purpose |
|---|---|---|
| | Local file storage |
Chunking Settings
| Setting | Default | Purpose |
|---|---|---|
| | Tokens per chunk |
| | Overlap for context |
Watch Settings
| Setting | Default | Purpose |
|---|---|---|
| | Wait time before re-indexing |
Ignore Patterns
Default patterns exclude:
- Version control:
.git - GrepAI data:
.grepai - Dependencies: ,
node_modulesvendor - Build outputs: ,
target,distbuild - Cache:
__pycache__
Customizing After Init
Edit to customize:
.grepai/config.yamlChange Embedding Provider
yaml
embedder:
provider: openai
model: text-embedding-3-small
api_key: ${OPENAI_API_KEY}Change Storage Backend
yaml
store:
backend: postgres
postgres:
dsn: postgres://user:pass@localhost:5432/grepaiAdd Custom Ignore Patterns
yaml
ignore:
- .git
- .grepai
- node_modules
- "*.min.js"
- "*.bundle.js"
- coverage/
- .nyc_output/Init in Monorepos
For monorepos, init at the root:
bash
cd /path/to/monorepo
grepai initOr use workspaces for separate indices:
bash
grepai workspace create my-workspace
grepai workspace add my-workspace /path/to/project1
grepai workspace add my-workspace /path/to/project2Re-Initialization
If you need to reset:
bash
# Remove existing config
rm -rf .grepai
# Re-initialize
grepai initWarning: This deletes your index. You'll need to re-run .
grepai watchVerifying Initialization
After init, verify with:
bash
# Check config exists
cat .grepai/config.yaml
# Check status (will show no index yet)
grepai statusCommon Issues
❌ Problem: already exists
✅ Solution: Delete it first or edit existing config:
.grepaibash
rm -rf .grepai && grepai init❌ Problem: Config created but Ollama not running
✅ Solution: Start Ollama before running :
grepai watchbash
ollama serve❌ Problem: Wrong directory initialized
✅ Solution: Remove and init in correct directory
.grepaiBest Practices
- Init at project root: Where your main code lives
- Add to
.grepai/: Index is machine-specific.gitignore - Customize ignore patterns: Exclude generated/vendored code
- Review config after init: Adjust for your stack
Example .gitignore Addition
gitignore
# GrepAI
.grepai/Output Format
After successful initialization:
✅ GrepAI Initialized
Config: .grepai/config.yaml
Default settings:
- Embedder: Ollama (nomic-embed-text)
- Storage: GOB (local file)
- Chunking: 512 tokens, 50 overlap
Next steps:
1. Ensure Ollama is running: ollama serve
2. Start indexing: grepai watch