This guide explains how to install and activate plugins from this marketplace in your Claude Code project.
Install the marketplace once, then enable your plugin.
/plugin marketplace add RhombusSystems/claude-code-plugins
| Persona | Command |
|---|---|
| Developers building on Rhombus | /plugin enable rhombus-developer |
| Day-to-day Rhombus users | /plugin enable rhombus-user |
| MSP/reseller partners | /plugin enable rhombus-partner |
You can enable multiple plugins if needed.
Once a plugin is enabled, trigger a skill using its slash command:
/rhombus-api
/code-review
/rhombus
Check each plugin's README.md for the available skill commands.
If you prefer to embed skills directly in your project rather than using the plugin:
git clone https://github.com/RhombusSystems/claude-code-pluginsCopy any skill folder into your project's skills/ directory:
cp -r claude-code-plugins/plugins/developer/skills/code-review ./skills/Add the skill path to your project's Claude Code configuration so Claude knows it's available.
Trigger it in Claude Code just as you would a plugin-installed skill.
Skills are Markdown files (SKILL.md) that contain instructions Claude follows when the skill is active. When you trigger a skill, Claude reads those instructions and applies them to your request.
Some skills include supporting files:
agents/— Sub-agent prompts used during the skill workflowscripts/— Python scripts for eval, reporting, and packagingassets/— Supporting files like HTML templates
- Skill not found: Make sure the plugin is enabled and the skill's
SKILL.mdexists in the correct location underplugins/<name>/skills/<skill-name>/ - Unexpected behavior: Check the
SKILL.mdfor the skill — the instructions are readable and can be reviewed directly - Questions about creating skills: See contributing.md