Files
gh-codethread-claude-code-p…/hooks/hooks.json
2025-11-29 18:14:51 +08:00

29 lines
603 B
JSON

{
"description": "Auto-suggests skill and syncs docs transparently when skill loads",
"hooks": {
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/claude-code-prompt.ts",
"timeout": 30
}
]
}
],
"PreToolUse": [
{
"matcher": "Skill",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/sync-docs-on-skill-load.ts",
"timeout": 30
}
]
}
]
}
}