forked from mengyxu/noob-components
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.4 KiB
71 lines
1.4 KiB
{ |
|
"hooks": { |
|
"SessionStart": [ |
|
{ |
|
"matcher": "startup", |
|
"hooks": [ |
|
{ |
|
"type": "command", |
|
"command": "python3 .claude/hooks/session-start.py", |
|
"timeout": 10 |
|
} |
|
] |
|
}, |
|
{ |
|
"matcher": "clear", |
|
"hooks": [ |
|
{ |
|
"type": "command", |
|
"command": "python3 .claude/hooks/session-start.py", |
|
"timeout": 10 |
|
} |
|
] |
|
}, |
|
{ |
|
"matcher": "compact", |
|
"hooks": [ |
|
{ |
|
"type": "command", |
|
"command": "python3 .claude/hooks/session-start.py", |
|
"timeout": 10 |
|
} |
|
] |
|
} |
|
], |
|
"PreToolUse": [ |
|
{ |
|
"matcher": "Task", |
|
"hooks": [ |
|
{ |
|
"type": "command", |
|
"command": "python3 .claude/hooks/inject-subagent-context.py", |
|
"timeout": 30 |
|
} |
|
] |
|
}, |
|
{ |
|
"matcher": "Agent", |
|
"hooks": [ |
|
{ |
|
"type": "command", |
|
"command": "python3 .claude/hooks/inject-subagent-context.py", |
|
"timeout": 30 |
|
} |
|
] |
|
} |
|
], |
|
"SubagentStop": [ |
|
{ |
|
"matcher": "check", |
|
"hooks": [ |
|
{ |
|
"type": "command", |
|
"command": "python3 .claude/hooks/ralph-loop.py", |
|
"timeout": 10 |
|
} |
|
] |
|
} |
|
] |
|
}, |
|
"enabledPlugins": {} |
|
}
|
|
|