mirror of
https://github.com/sweetwisdom/everything-claude-code-zh.git
synced 2026-03-22 14:40:14 +00:00
fix: add hooks declaration to plugin.json for proper hook loading
Previously hooks were not loaded when the plugin was installed because plugin.json didn't declare the hooks path. This caused errors like: "Stop hook error: .../skills/continuous-learning/evaluate-session.sh: No such file" The hooks are defined in hooks/hooks.json and use JS implementations in scripts/hooks/ directory.
This commit is contained in:
@@ -23,5 +23,6 @@
|
|||||||
"best-practices"
|
"best-practices"
|
||||||
],
|
],
|
||||||
"commands": "./commands",
|
"commands": "./commands",
|
||||||
"skills": "./skills"
|
"skills": "./skills",
|
||||||
|
"hooks": "./hooks/hooks.json"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user