-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathgreptile.json
More file actions
33 lines (33 loc) · 1.04 KB
/
greptile.json
File metadata and controls
33 lines (33 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"customContext": {
"rules": [
{
"content": "Python project using SQLite + sqlite-vec for vector search. Uses pytest for testing."
},
{
"content": "MCP server with 8 tools: brain_search, brain_store, brain_recall, brain_entity, brain_update, brain_digest, brain_expand, brain_get_person."
},
{
"content": "Entity resolution uses cascading pipeline: normalize → exact match → vector similarity → LLM fallback. Thresholds: 0.92 auto-match, 0.75 fuzzy, <0.75 create new."
},
{
"content": "brain_search defaults to compact format (150-char snippets). Use detail='full' for verbose output."
},
{
"content": "Never hardcode secrets. Use environment variables.",
"scope": ["**/*.py"]
},
{
"content": "Flag surprises — if something in the codebase is unexpected, mention it in the review."
}
]
},
"ignorePatterns": [
".venv",
"__pycache__",
"*.egg-info",
".git",
"*.pyc",
"claude.scratchpad.md"
]
}