Files
beardrive/plugin/hooks/hooks.json
T

40 lines
815 B
JSON
Raw Permalink Normal View History

{
"hooks": {
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}/scripts/beardrive-sync.sh\"",
"timeout": 30,
"statusMessage": "beardrive: pulling latest files"
}
]
}
],
"PostToolUse": [
{
"matcher": "Read|Grep|Bash",
"hooks": [
{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}/scripts/beardrive-read.sh\"",
"async": true
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}/scripts/beardrive-sync.sh\"",
"async": true
}
]
}
]
}
}