Spaces:
Running
Running
File size: 1,762 Bytes
26a284a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | {
"version": 1,
"hooks": {
"sessionStart": [
{
"type": "command",
"command": "python \"${COPILOT_PLUGIN_ROOT}/scripts/session_start.py\""
}
],
"userPromptSubmitted": [
{
"type": "command",
"command": "python \"${COPILOT_PLUGIN_ROOT}/scripts/prompt_submit.py\""
}
],
"preToolUse": [
{
"type": "command",
"matcher": "edit|write|create|read|view|glob|grep",
"command": "python \"${COPILOT_PLUGIN_ROOT}/scripts/pre_tool_use.py\""
}
],
"postToolUse": [
{
"type": "command",
"command": "python \"${COPILOT_PLUGIN_ROOT}/scripts/post_tool_use.py\""
}
],
"postToolUseFailure": [
{
"type": "command",
"command": "python \"${COPILOT_PLUGIN_ROOT}/scripts/post_tool_failure.py\""
}
],
"preCompact": [
{
"type": "command",
"command": "python \"${COPILOT_PLUGIN_ROOT}/scripts/pre_compact.py\""
}
],
"agentStop": [
{
"type": "command",
"command": "python \"${COPILOT_PLUGIN_ROOT}/scripts/stop.py\""
}
],
"sessionEnd": [
{
"type": "command",
"command": "python \"${COPILOT_PLUGIN_ROOT}/scripts/session_end.py\""
}
],
"subagentStart": [
{
"type": "command",
"command": "python \"${COPILOT_PLUGIN_ROOT}/scripts/subagent_start.py\""
}
],
"subagentStop": [
{
"type": "command",
"command": "python \"${COPILOT_PLUGIN_ROOT}/scripts/subagent_stop.py\""
}
],
"notification": [
{
"type": "command",
"command": "python \"${COPILOT_PLUGIN_ROOT}/scripts/notification.py\""
}
]
}
}
|