modify gemini template

This commit is contained in:
NINI
2026-04-28 01:51:20 +09:00
parent 949e0ab13c
commit 38291723f0
32 changed files with 523 additions and 320 deletions
+44
View File
@@ -0,0 +1,44 @@
{
"context": {
"fileName": "GEMINI.md"
},
"skills": {
"enabled": true,
"disabled": []
},
"hooksConfig": {
"enabled": true,
"disabled": [],
"notifications": true
},
"hooks": {
"BeforeTool": [
{
"matcher": "run_shell_command",
"hooks": [
{
"name": "pre-tool-guard",
"type": "command",
"command": "python .gemini/hooks/pre_tool_guard.py",
"timeout": 5000,
"description": "Block obviously destructive shell commands."
}
]
}
],
"AfterAgent": [
{
"matcher": "*",
"hooks": [
{
"name": "validate-docs-after-agent",
"type": "command",
"command": "python .gemini/hooks/validate_docs_after_agent.py",
"timeout": 60000,
"description": "Run document harness validation after each agent response."
}
]
}
]
}
}