Files
gh-d-oit-gemini-search-plugin/hooks/hooks.json
2025-11-29 18:17:20 +08:00

37 lines
749 B
JSON

{
"hooks": {
"PreToolUse": [
{
"matcher": "search|Search",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/pre-edit-search.sh"
}
]
}
],
"PostToolUse": [
{
"matcher": "search|Search",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/error-search.sh"
}
]
}
],
"UserPromptSubmit": [
{
"matcher": "/search|/search-stats|/clear-cache",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/pre-edit-search.sh"
}
]
}
]
}
}