Files
goose/examples/plugins/hello-hooks/hooks/hooks.json
T
2026-05-11 16:02:44 +00:00

46 lines
871 B
JSON

{
"hooks": {
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "${PLUGIN_ROOT}/scripts/announce.sh start"
}
]
}
],
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "${PLUGIN_ROOT}/scripts/announce.sh prompt"
}
]
}
],
"PreToolUse": [
{
"hooks": [
{
"type": "command",
"command": "${PLUGIN_ROOT}/scripts/announce.sh pre-tool"
}
]
}
],
"PostToolUse": [
{
"matcher": "developer__shell|developer__text_editor",
"hooks": [
{
"type": "command",
"command": "${PLUGIN_ROOT}/scripts/announce.sh post-tool"
}
]
}
]
}
}