Skip to main content
The Rhombus Claude Code Plugin Marketplace provides ready-made skills, sub-agents, and hooks for Claude Code, organized by persona. Each plugin gives Claude Code deep knowledge of the Rhombus platform so it can help you build integrations, manage devices, and monitor alerts directly from your terminal.

Quick Start

1

Add the marketplace

In Claude Code, run:
/plugin marketplace add RhombusSystems/claude-code-plugins
2

Enable your plugin

Enable the plugin that matches your role:
/plugin enable rhombus-developer
Or for other roles:
/plugin enable rhombus-user
/plugin enable rhombus-partner
You can enable multiple plugins if needed.
3

Run a command or skill

Trigger commands and skills with slash commands:
/rhombus-find-endpoint unlock door
/code-review src/auth.ts
/rhombus-alerts last 24 hours

Available Plugins

For engineers building on the Rhombus platform. Auto-configures the official rhombus-node-mcp and Rhombus docs MCP servers.

Commands

CommandDescription
/rhombus-find-endpointSearch the OpenAPI spec for endpoints by keyword, tag, or operationId
/rhombus-schemaDump the request and response schema for a specific endpoint as markdown
/rhombus-curlGenerate a ready-to-run cURL command with auth headers and a skeleton request body
/rhombus-sdkGenerate a typed SDK client (Python, TypeScript, Java, Go) via openapi-generator-cli
/rhombus-mcp-statusReport the status of the Rhombus MCP servers and diagnose connection issues
/rhombus-newprojectScaffold a new integration project with a typed SDK, webhook receiver, and README

Skills

SkillDescription
rhombus-apiFull Rhombus API reference — 900+ endpoints across 65+ service categories, plus the OpenAPI spec
rhombus-sdk-codegenGenerate typed SDK clients (Python, TypeScript, Java, Go, C#) from the OpenAPI spec
rhombus-webhook-receiverScaffold a webhook listener in Express, FastAPI, or AWS Lambda
rhombus-edge-streamingEdge streaming and third-party camera integration — RTSP, ONVIF, and analytics seekpoints
api-docGenerate API documentation from your source code
code-reviewStructured code review for quality, security, performance, and Rhombus conventions

Agents

AgentDescription
rhombus-api-architectDesigns integrations, maps endpoint chains, and weighs CLI/API/MCP/SDK trade-offs
rhombus-webhook-debuggerDiagnoses misbehaving webhooks — not firing, duplicates, signature failures, unexpected payloads

Hooks

HookTriggerDescription
rhombus-api-interceptPreToolUse (Bash)Suggests the rhombus CLI or SDK when it detects raw curl/wget/fetch calls to Rhombus API domains
rhombus-openapi-freshnessSessionStartWarns when the bundled OpenAPI spec is stale (older than 90 days)

Example Usage

# Find the endpoint you need
/rhombus-find-endpoint unlock door

# Generate a typed SDK client
/rhombus-sdk typescript

# Review code for security and performance issues
/code-review src/auth.ts

Prerequisites

  • Claude Code installed (CLI, desktop app, or IDE extension)
  • For user/partner plugins: Rhombus CLI installed and authenticated

Manual Installation

If you prefer to embed skills directly in your project instead of using the plugin marketplace:
1

Clone the repository

git clone https://github.com/RhombusSystems/claude-code-plugins
2

Copy the skill you need

cp -r claude-code-plugins/plugins/developer/skills/code-review ./skills/
3

Use the skill

The skill is available in Claude Code from your project directory.

How Plugins Work

Each plugin contains a combination of:
  • Commands — Slash commands (e.g. /rhombus-find-endpoint) that run a specific, often side-effecting, task on demand.
  • Skills — Markdown files (SKILL.md) with instructions Claude follows when a task matches. Skills can include supporting files like agent prompts, scripts, and templates.
  • Agents — Specialized sub-agent prompts that Claude dispatches for specific tasks (device management, alert investigation, etc.)
  • Hooks — Automatic actions triggered by Claude Code events (e.g., validating commands before execution, checking for CLI updates on session start)

Resources

GitHub Repository

Source code, all plugins, and contributing guide

Rhombus CLI

Required for user and partner plugins

Rhombus API MCP

Alternative: connect Claude to Rhombus via MCP server

Documentation MCP

Search Rhombus docs from any MCP-compatible AI tool
Last modified on July 8, 2026