From 38cbab1a8e84f4f559b0c8df5c3aa0a4481c03fb Mon Sep 17 00:00:00 2001 From: sachin1801 Date: Mon, 23 Mar 2026 00:36:55 -0400 Subject: [PATCH] Fix plugin installation by adding marketplace.json The `/plugin install Recusive/Orbit-plugin` command fails with "Marketplace not found" because plugins must be discoverable through a marketplace catalog. This adds a marketplace.json so the repo can serve as its own single-plugin marketplace. Updated README install instructions to the correct two-step process: 1. /plugin marketplace add Recusive/Orbit-plugin 2. /plugin install audit-suite --- .claude-plugin/marketplace.json | 34 +++++++++++++++++++++++++++++++++ README.md | 6 +++++- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 .claude-plugin/marketplace.json diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json new file mode 100644 index 0000000..8fb2b0e --- /dev/null +++ b/.claude-plugin/marketplace.json @@ -0,0 +1,34 @@ +{ + "$schema": "https://anthropic.com/claude-code/marketplace.schema.json", + "name": "Orbit-plugin", + "description": "Orbit Audit Suite — 10 expert audit lenses + orchestrator for Claude Code", + "owner": { + "name": "Orbit", + "email": "" + }, + "plugins": [ + { + "name": "audit-suite", + "description": "10 expert audit lenses + full-audit orchestrator + 5 bundled reference skills. Review plans and code through the eyes of Design, UX, Frontend, Backend, Structural, Repo, Production, DX, Performance, and Accessibility engineers.", + "category": "development", + "source": ".", + "homepage": "https://github.com/Recusive/Orbit-plugin", + "author": { + "name": "Orbit" + }, + "version": "1.1.0", + "keywords": [ + "audit", + "code-review", + "plan-review", + "accessibility", + "performance", + "design", + "ux", + "frontend", + "backend", + "production-readiness" + ] + } + ] +} diff --git a/README.md b/README.md index 29e7c9e..a7d17ee 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,11 @@ Most code reviews are generalist — one person (or one AI) trying to catch ever ## Install ```bash -/plugin install Recusive/Orbit-plugin +# Step 1: Add the Orbit marketplace +/plugin marketplace add Recusive/Orbit-plugin + +# Step 2: Install the plugin +/plugin install audit-suite ``` ## Quick Start