-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopencode.json
More file actions
26 lines (26 loc) · 782 Bytes
/
Copy pathopencode.json
File metadata and controls
26 lines (26 loc) · 782 Bytes
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
{
"$schema": "https://opencode.ai/config.json",
"instructions": ["AGENTS.md", ".opencode/rules/git-safety.md"],
"mcp": {
"kyoku_project_knowledge": {
"type": "local",
"command": ["./tools/rag/.venv/bin/python", "./tools/rag/mcp_project_knowledge.py"],
"enabled": true,
"timeout": 20000,
"environment": {
"KYOKU_RAG_DB": "./tools/rag/data/kyoku_project_knowledge.sqlite",
"KYOKU_RAG_DATA_DIR": "./tools/rag/data",
"KYOKU_RAG_EMBEDDING_MODEL": "sentence-transformers/all-MiniLM-L6-v2",
"KYOKU_RAG_AUTO_REFRESH": "1",
"KYOKU_RAG_REFRESH_MIN_INTERVAL_SECONDS": "300"
}
}
},
"permission": {
"bash": {
"*": "ask",
"git push*": "deny",
"git -C * push*": "deny"
}
}
}