Installation
Add the marketplace, install plugins, and pick one install mode.
Add the marketplace
Add marketplace
/plugin marketplace add https://github.com/skylence-be/claude-code-marketplace Install plugins
Install only the plugins you need, then run /reload-plugins (or restart Claude Code) so commands, agents, skills, and hooks load.
Install plugins
/plugin install laravel-development
/plugin install vue-nuxt-development
/plugin install code-review
/plugin install core
/plugin install judge-design Two install modes
The repository can be consumed two ways, and the bundled hooks are wired for both:
- Marketplace (recommended): each plugin carries its own
hooks/hooks.json, resolved via${CLAUDE_PLUGIN_ROOT}/hooks/. - Aggregate single plugin: the root
plugin.jsonsets"hooks": "./aggregate-hooks.json", resolved via${CLAUDE_PLUGIN_ROOT}/plugins/<name>/hooks/.
Avoiding the double-fire caveat
- Choose one mode. Enable the individual plugins, or the aggregate plugin. Not both. With both enabled, every hook runs twice.
- If you previously ran an older
core:solo-setupthat copied hooks into~/.claude/settings.json, remove the leftoverjudge-hook.sh,writing-guard.sh, andnotify.shentries. The plugins now provide those hooks, so old settings entries would double-fire.