Router Plugins
Manage integrations with official Claude Code plugins.
What This Does
Claude Router can optionally integrate with these official plugins:
- •hookify: Pattern-based behavior rules
- •ralph-loop: Iterative development loops
- •code-review: Multi-agent PR review
- •feature-dev: 7-phase feature development
When enabled, Claude Router can suggest using these plugins for appropriate tasks.
Usage
code
/router-plugins # List all plugins and status /router-plugins enable <name> # Enable integration /router-plugins disable <name> # Disable integration /router-plugins detect # Re-detect installed plugins
Example Output
code
Plugin Integrations ─────────────────── hookify: [x] Detected [ ] Enabled ralph-loop: [ ] Not found code-review: [x] Detected [x] Enabled feature-dev: [x] Detected [ ] Enabled Use `/router-plugins enable <name>` to enable integration.
Instructions
When this skill is invoked:
List Mode (no arguments or just /router-plugins)
- •Read plugin detection from
~/.claude/plugins/and~/.config/claude-code/plugins/ - •Read enabled state from
knowledge/state.jsonunderplugin_integrations - •Display status table showing:
- •Plugin name
- •Detection status (Detected / Not found)
- •Enabled status (if detected)
Enable Mode (/router-plugins enable <name>)
- •Check if plugin is in supported list: hookify, ralph-loop, code-review, feature-dev
- •Check if plugin is detected (installed)
- •If not detected, inform user how to install:
code
Plugin "ralph-loop" not found. Install with: /plugin install ralph-loop@claude-plugins-official
- •If detected, update
knowledge/state.json:json{ "plugin_integrations": { "<name>": {"enabled": true, "detected": true} } } - •Confirm:
Plugin integration "hookify" enabled.
Disable Mode (/router-plugins disable <name>)
- •Update
knowledge/state.jsonto setenabled: false - •Confirm:
Plugin integration "hookify" disabled.
Detect Mode (/router-plugins detect)
- •Scan plugin locations for installed plugins
- •Update
detectedflags in state - •Report findings
Integration Behavior
When integrations are enabled:
- •hookify: Routing can suggest creating hookify rules for repeated patterns
- •ralph-loop: Orchestrated tasks may suggest
/ralph-loopfor iterative work - •code-review: PR review queries may suggest using the code-review plugin
- •feature-dev: Feature requests may suggest the structured feature-dev workflow
These are suggestions only - all plugins work independently of claude-router.
Notes
- •Plugins are optional enhancements, not dependencies
- •Claude Router works fully without any plugins installed
- •Detection checks common install locations
- •State is stored in project-local
knowledge/state.json