-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhooks.json
More file actions
82 lines (82 loc) · 2.22 KB
/
hooks.json
File metadata and controls
82 lines (82 loc) · 2.22 KB
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
74
75
76
77
78
79
80
81
82
{
"description": "claude-quality-gate — automated code quality enforcement hooks",
"_dispatcher_note": "Optional: replace individual hook entries below with dispatcher_pre.py / dispatcher_post.py for ~75% latency reduction. See README for details.",
"hooks": {
"PreToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/auto_copyright_header.py",
"timeout": 5000
}
]
}
],
"PostToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/auto_test_after_edit.py",
"timeout": 30000
},
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hardcoded_model_guard.py",
"timeout": 3000
},
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/async_safety_guard.py",
"timeout": 3000
},
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/resource_leak_guard.py",
"timeout": 3000
},
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/temp_file_guard.py",
"timeout": 3000
},
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/unicode_grep_warn.py",
"timeout": 3000
},
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/auto_license.py",
"timeout": 5000
}
]
},
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/pre_commit_validate.py",
"timeout": 5000
}
]
}
],
"Stop": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/auto_review_before_done.py",
"timeout": 10000
}
]
}
]
}
}