Agent skill
plugin-packager-hooks
Handle hook scripts and paths for plugin packaging
Install this agent skill to your Project
npx add-skill https://github.com/JamesPrial/claudefiles/tree/main/skills/plugin-packager/hooks
SKILL.md
Hook Script Handling
Make Executable
chmod +x hooks/golang/scripts/*.sh
chmod +x hooks/security/scripts/*.py
Dynamic Path Resolution
Use ${CLAUDE_PLUGIN_ROOT} for portable paths:
{
"script": "${CLAUDE_PLUGIN_ROOT}/hooks/golang/scripts/go-fmt.sh"
}
Validate All Scripts
find hooks -type f \( -name "*.sh" -o -name "*.py" \) ! -perm -u+x
Multiple hooks.json Handling
Option 1: Array Reference (Recommended)
{
"hooks": [
"./hooks/golang/hooks.json",
"./hooks/security/hooks.json"
]
}
Option 2: Inline Merged
Combine all hook definitions into single inline object in plugin.json.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
plugin-packager
Package claudefiles components into a valid Claude Code plugin
plugin-packager-validation
Plugin validation errors and fixes
plugin-packager-subset
Package language-specific subsets of claudefiles
go-concurrency
Go concurrency patterns. Routes to specific patterns.
go-sync-primitives
sync.WaitGroup and sync.Mutex patterns
go-context-cancellation
Context cancellation patterns for graceful shutdown
Didn't find tool you were looking for?