{
  "markdown": "<p align=\"center\">\n  <img src=\"icon.png\" alt=\"Orbit\" width=\"128\" />\n</p>\n\n<h1 align=\"center\">Orbit Audit Suite</h1>\n\n<p align=\"center\">\n  <strong>10 expert engineers. One command. Every angle covered.</strong><br/>\n  A Claude Code plugin that reviews your plans and code through the eyes of specialized engineers — from design to accessibility, frontend to production readiness.\n</p>\n\n<p align=\"center\">\n  <img src=\"https://img.shields.io/badge/Claude_Code-Plugin-6C47FF?logo=data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTIgMkM2LjQ4IDIgMiA2LjQ4IDIgMTJzNC40OCAxMCAxMCAxMCAxMC00LjQ4IDEwLTEwUzE3LjUyIDIgMTIgMnoiIGZpbGw9IndoaXRlIi8+PC9zdmc+&logoColor=white\" alt=\"Claude Code Plugin\" />\n  <img src=\"https://img.shields.io/badge/Lenses-10-24C8D8\" alt=\"10 Lenses\" />\n  <img src=\"https://img.shields.io/badge/Skills-16-DEA584\" alt=\"16 Skills\" />\n  <img src=\"https://img.shields.io/badge/License-MIT-green\" alt=\"MIT License\" />\n</p>\n\n---\n\n## What is this?\n\nMost code reviews are generalist — one person (or one AI) trying to catch everything. They miss things. A design engineer would have caught the dark mode gap. A performance engineer would have flagged the unbounded memory growth. An accessibility engineer would have noticed the keyboard trap.\n\n**Orbit Audit Suite gives you all of them.** Each lens is a specialist that knows exactly what to look for in its domain, complete with project-specific gotchas and checklists. Run one lens or all ten — your call.\n\n## Install\n\n```bash\n# Step 1: Add the marketplace\n/plugin marketplace add Recusive/Orbit-plugin\n\n# Step 2: Install the plugin\n/plugin install audit-suite@orbit-plugin\n```\n\n## Quick Start\n\n```bash\n# Audit a plan before implementation\n/full-audit docs/plans/my-feature-plan.md\n\n# Audit your uncommitted changes\n/full-audit\n\n# Run a single lens\n/audit-as-frontend-eng docs/plans/my-feature-plan.md\n/audit-as-a11y-eng docs/plans/my-feature-plan.md\n```\n\n---\n\n## The 10 Lenses\n\n| # | Skill | Expert | What They Catch |\n|---|-------|--------|----------------|\n| 1 | `audit-as-design-eng` | Design Engineer | Visual hierarchy, design token fidelity, dark mode parity, interactive states, animation quality |\n| 2 | `audit-as-ux-eng` | UX Engineer | User journey gaps, broken mental models, missing feedback, discoverability, error recovery |\n| 3 | `audit-as-frontend-eng` | Frontend Engineer | React anti-patterns, Zustand pitfalls, type safety gaps, unnecessary re-renders, bundle bloat |\n| 4 | `audit-as-backend-eng` | Backend Engineer | Rust error handling, concurrency hazards, resource leaks, IPC mismatches, file system safety |\n| 5 | `audit-as-structural-eng` | Structural Architect | Module coupling, dependency direction, layer violations, abstraction mismatches, circular deps |\n| 6 | `audit-as-repo-maintainer` | Repo Maintainer | Convention drift, missing barrel exports, naming inconsistency, dead code, import hygiene |\n| 7 | `audit-as-prod-readiness` | Production Engineer | Dev/prod parity, missing error recovery, data integrity, rollback safety, deployment gaps |\n| 8 | `audit-as-dx-eng` | DX Engineer | Error message quality, CLI ergonomics, keyboard-first design, config defaults, developer flow |\n| 9 | `audit-as-perf-eng` | Performance Engineer | Memory accumulation, IPC latency, streaming bottlenecks, startup impact, long-session stability |\n| 10 | `audit-as-a11y-eng` | Accessibility Engineer | Screen reader compatibility, keyboard navigation, focus management, ARIA compliance, contrast |\n\nEach lens includes a **Gotchas** section — the most common failures Claude makes from that perspective — and a **Signature Section** that only that expert produces (e.g., Visual State Coverage matrix, Keyboard Navigation Walkthrough, Resource Budget table).\n\n## The Orchestrator\n\n| Skill | What It Does |\n|-------|-------------|\n| `full-audit` | Runs all relevant lenses sequentially into **one document** with master verdict, cross-cutting concerns, and deduplicated findings |\n\n### Two Modes\n\n**Plan Mode** — audit before you build:\n```\n/full-audit docs/plans/my-plan.md\n```\n\n**Repo Mode** — audit what you've built:\n```\n/full-audit\n```\nChoose from:\n1. **Uncommitted changes** — working tree diff\n2. **Branch vs main** — PR-level review\n3. **General repo health** — broad codebase check\n\n### Smart Lens Selection\n\nNot every lens applies to every plan. The orchestrator reads your plan/changes and skips irrelevant lenses automatically:\n- Backend-only change? Skips Design, UX, A11y\n- Frontend-only? Skips Backend\n- Repo Maintainer and Production Readiness always run\n\n### Output\n\nEverything consolidates into one file: `reviews/audit-plan-full.md`\n\n```\nMaster Verdict + Cross-Cutting Concerns + All Critical Issues\n──────────────────────────────────────────────────────────────\n## 1. Design Engineer         ← full analysis\n## 2. UX Engineer             ← full analysis\n## 3. Frontend Engineer       ← full analysis\n...\n## 10. Accessibility Engineer ← full analysis\n```\n\nThe **Cross-Cutting Concerns** section is where the real value lives — issues flagged by multiple independent lenses are systemic problems, not isolated nitpicks.\n\n---\n\n## Bundled Reference Skills\n\nFive reference skills are **included in this plugin** — no extra installs needed. When an audit lens finds issues, it consults these for detailed guidance:\n\n| Skill | What It Provides |\n|-------|-----------------|\n| `emil-design-engineering` | Design principles — typography, surfaces, forms, component composition, touch targets |\n| `make-interfaces-feel-better` | Visual polish — concentric border-radius, optical alignment, shadows, font smoothing |\n| `web-animation-design` | Animation rules — easing blueprints, timing, spring physics, GPU-only properties |\n| `web-design-guidelines` | Web Interface Guidelines compliance — structured accessibility and UX review |\n| `vercel-react-best-practices` | 45 prioritized React performance rules — waterfalls, bundle size, re-renders, caching |\n\n### Which lens uses what\n\n| Lens | Consults |\n|------|----------|\n| Design | `emil-design-engineering`, `make-interfaces-feel-better`, `web-animation-design` |\n| UX | `web-design-guidelines`, `emil-design-engineering` |\n| Frontend | `vercel-react-best-practices` |\n| Structural | `vercel-react-best-practices` |\n| Performance | `vercel-react-best-practices`, `web-animation-design` |\n| Accessibility | `emil-design-engineering`, `web-design-guidelines`, `web-animation-design` |\n\n---\n\n## How It Fits Your Pipeline\n\n```\nproblem-clarifier → write plan → fazxes (scope) → full-audit → implement\n```\n\nOr use individual lenses for focused reviews at any stage.\n\n## License\n\nMIT\n",
  "bytes": 6726,
  "sha": "92d0f9bae5809783da9076c3a5e43e24789942229837a56ff462728a7bea647a",
  "repo_slug": "recusive/orbit-plugin",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_recusive_orbit_plugin_audit_suite_2e8bd0b8/readme"
}