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
| {
| "hooks": {
| "PostToolUse": [
| {
| "matcher": "Edit|Write|apply_patch",
| "hooks": [
| {
| "type": "command",
| "command": "[ ! -f \".agents/skills/impeccable/scripts/hook.mjs\" ] || node \".agents/skills/impeccable/scripts/hook.mjs\"",
| "timeout": 5,
| "statusMessage": "Checking UI changes"
| }
| ]
| }
| ],
| "Stop": [
| {
| "hooks": [
| {
| "type": "command",
| "command": "[ ! -f \".agents/skills/impeccable/scripts/hook.mjs\" ] || node \".agents/skills/impeccable/scripts/hook.mjs\"",
| "timeout": 30,
| "statusMessage": "Design deep pass"
| }
| ]
| }
| ]
| }
| }
|
|