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
Add the marketplace
In Claude Code, run: /plugin marketplace add RhombusSystems/claude-code-plugins
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.
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 Command Description /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 Skill Description 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 Agent Description 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 Hook Trigger Description rhombus-api-interceptPreToolUse (Bash) Suggests the rhombus CLI or SDK when it detects raw curl/wget/fetch calls to Rhombus API domains rhombus-openapi-freshnessSessionStart Warns 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
For day-to-day Rhombus platform users. Installs and keeps the Rhombus CLI up to date automatically. Commands Command Description /rhombus-alertsFetch and summarize recent alerts, optionally filtered by camera and time window /rhombus-analyzeRun rhombus analyze on an alert or a camera + time window and summarize the activity /rhombus-statusOne-shot deployment health report — cameras, door states, sensor battery, recent issues /rhombus-watchOpen a Rhombus camera player in your browser /rhombus-context-refreshRegenerate the local deployment context — index, manifest, and per-camera stills
Skills Skill Description rhombus-cliRhombus CLI reference — install, auth, profiles, global flags, and the API service groups rhombus-deployment-contextGenerate, query, and analyze deployment context; covers rhombus context, analyze, and stitch rhombus-mindInteract with Rhombus MIND, the natural-language AI assistant (rhombus chat and rhombus voice) rhombus-support-linksCurated directory of Rhombus support articles for setup and administration topics
Agents Agent Description rhombus-cliCLI assistant — builds, executes, and troubleshoots rhombus commands rhombus-alertsAlert monitoring specialist — investigates security events, downloads footage rhombus-devicesDevice management — inventories cameras, sensors, and doors, and audits deployments rhombus-footage-investigatorReconstructs incidents across cameras with analyze and stitch, and builds review videos
Hooks Hook Trigger Description rhombus-cli-validatePreToolUse (Bash) Validates rhombus commands (POST-only, kebab-case flags, JSON input) rhombus-cli-updateSessionStart Installs the CLI if missing and checks for updates once per day
Example Usage # Summarize recent alerts
/rhombus-alerts last 24 hours
# Check deployment health
/rhombus-status
# The agents work automatically — Claude picks the right one:
"Show me all offline cameras" → rhombus-devices agent
"What alerts fired in the last hour?" → rhombus-alerts agent
"What happened in the lobby at 11:30pm?" → rhombus-footage-investigator agent
For MSP and reseller partners managing multiple client organizations. Adds multi-org tooling on top of the CLI auto-installer. Commands Command Description /rhombus-clientsList managed client organizations with active/inactive state and per-client camera counts /rhombus-client-switchSet the active client organization for this workspace /rhombus-audit-clientsMetric-per-client audit across every managed org (offline cameras, alert volume, storage, license, door issues) /rhombus-client-alertsRecent alerts scoped to a specific client organization /rhombus-client-devicesDevice inventory for one client organization — cameras, doors, and sensors /rhombus-fleet-reportCross-client fleet report — weekly health, monthly executive, or incident rollup
Skills Skill Description rhombus-partner-cliPartner CLI reference — authentication, the --partner-org flag, and multi-org workflows rhombus-cross-client-reportingFleet-wide health and activity reports across every managed organization rhombus-partner-onboardingRunbook for onboarding a new client org — API access, admin invite, retention, alert routing, smoke test
Agents Agent Description rhombus-client-selectorResolves ambiguous client names to the canonical org name or UUID rhombus-fleet-opsRuns operations across every managed org — audits, health checks, and rollups rhombus-client-onboardingWalks through adding a new client to partner management, validating each step
Hooks Hook Trigger Description rhombus-cli-validatePreToolUse (Bash) Partner-aware rhombus command validation rhombus-partner-session-initSessionStart Loads the active-client session state for partner workflows rhombus-cli-updateSessionStart Installs the CLI if missing and checks for updates once per day
Example Usage # List managed client orgs
/rhombus-clients
# Set the active client, then work against it
/rhombus-client-switch "Acme Corp"
# Audit offline cameras across the whole fleet
/rhombus-audit-clients offline-cameras
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:
Clone the repository
git clone https://github.com/RhombusSystems/claude-code-plugins
Copy the skill you need
cp -r claude-code-plugins/plugins/developer/skills/code-review ./skills/
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