-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsettings.fragment.json
More file actions
28 lines (28 loc) · 943 Bytes
/
Copy pathsettings.fragment.json
File metadata and controls
28 lines (28 loc) · 943 Bytes
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
{
"_comment": "Reference only. install.sh / install.ps1 merge these into ~/.claude/settings.json (with a backup) and write ABSOLUTE interpreter + script paths so the hooks work without $HOME/python3 resolution. If editing by hand, replace 'python3' with your interpreter (e.g. 'python' on Windows) and $HOME with the full path to your home dir.",
"alwaysThinkingEnabled": true,
"hooks": {
"SessionStart": [
{
"hooks": [
{ "type": "command", "command": "python3 $HOME/.claude/hooks/fable-trigger.py" }
]
}
],
"UserPromptSubmit": [
{
"hooks": [
{ "type": "command", "command": "python3 $HOME/.claude/hooks/fable-trigger.py" }
]
}
],
"PostToolUse": [
{
"matcher": "Edit|Write|MultiEdit",
"hooks": [
{ "type": "command", "command": "python3 $HOME/.claude/hooks/test-after-edit.py" }
]
}
]
}
}