mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02: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:
parent
5230892ee8
commit
22ad036cb5
1 changed files with 2 additions and 1 deletions
|
|
@ -23,5 +23,6 @@
|
|||
"best-practices"
|
||||
],
|
||||
"commands": "./commands",
|
||||
"skills": "./skills"
|
||||
"skills": "./skills",
|
||||
"hooks": "./hooks/hooks.json"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue