Files
LLMWiki-Template/.gemini/settings.json
T
2026-04-17 11:11:12 +09:00

38 lines
909 B
JSON

{
"context": {
"fileName": [
"GEMINI.md"
]
},
"hooks": {
"BeforeTool": [
{
"matcher": "write_file|replace|delete_file|run_shell_command",
"hooks": [
{
"name": "protect-raw-sources",
"type": "command",
"command": "node .gemini/hooks/protect-raw-sources.cjs",
"timeout": 5000,
"description": "Prevent the agent from mutating raw/ sources."
}
]
}
],
"AfterTool": [
{
"matcher": "write_file|replace|delete_file",
"hooks": [
{
"name": "wiki-write-reminder",
"type": "command",
"command": "node .gemini/hooks/wiki-write-reminder.cjs",
"timeout": 5000,
"description": "Remind the agent to keep wiki/index.md and wiki/log.md in sync."
}
]
}
]
}
}