Claude Code Plugin Marketplace — 多 plugin 集合仓库
npx claudepluginhub connor-git-yaml/cc-plugin-market自治研发编排器——支持 feature/implement/story/fix/resume/sync/doc/refactor 八种模式自动执行 Spec-Driven Development 全流程,基于 orchestration.yaml 配置驱动编排,含 6 个质量门禁和 sync 确定性合并引擎
A curated collection of Claude Code plugins for Spec-Driven Development. This repository ships two complementary products that cover the full software development lifecycle — from reverse-engineering existing code into specifications, to orchestrating new feature development through structured workflows.
| Plugin | Type | Description |
|---|---|---|
| reverse-spec | CLI + MCP + Skills | Reverse-engineers legacy code into structured Spec documents via AST + LLM hybrid pipeline |
| Spec Driver | Plugin (Agents + Skills) | Autonomous development orchestrator — automates the full SDD lifecycle with 14 specialized sub-agent prompts, 7 execution modes, and Project Context suggestions |
┌─────────────────────────────────────────────────────────────────┐
│ CC Plugin Market │
│ │
│ ┌──────────────────────┐ ┌──────────────────────────────┐ │
│ │ reverse-spec │ │ Spec Driver │ │
│ │ (Reverse Engineer) │ │ (Forward Orchestrator) │ │
│ │ │ │ │ │
│ │ Code → AST → Spec │ │ Idea → Spec → Plan → Code │ │
│ │ │ │ │ │
│ │ • generate / batch │ │ • spec-driver-feature │ │
│ │ • diff / prepare │ │ • spec-driver-story │ │
│ │ • MCP server │ │ • spec-driver-fix │ │
│ │ • CLI + Skills │ │ • implement/resume/sync/doc │ │
│ └──────────────────────┘ └──────────────────────────────┘ │
└─────────────────────────────────────────────────────────────────┘
Note: Plugin Marketplace commands above are Claude Code specific.
For Codex, use the CLI + skill installation flow in the Codex Support section below.
claude plugin marketplace add cc-plugin-market https://github.com/connor-git-yaml/cc-plugin-market.git
# Install to current project (recommended — scoped to this project only)
claude plugin install spec-driver@cc-plugin-market --scope project
claude plugin install reverse-spec@cc-plugin-market --scope project
# Or install for current user (available across all projects)
claude plugin install spec-driver@cc-plugin-market --scope user
claude plugin install reverse-spec@cc-plugin-market --scope user
# Refresh marketplace cache to get latest versions
claude plugin marketplace update cc-plugin-market
# Then reinstall to upgrade
claude plugin install spec-driver@cc-plugin-market --scope project
# Remove from current project
claude plugin remove spec-driver --scope project
claude plugin remove reverse-spec --scope project
# Remove from user scope
claude plugin remove spec-driver --scope user
claude plugin remove reverse-spec --scope user
After installation, the plugin skills become available in Claude Code:
# List installed plugins
claude plugin list
# Test spec-driver skills
/spec-driver:spec-driver-doc
# Test reverse-spec skills
/reverse-spec src/
For Codex, install reverse-spec CLI and register reverse-spec skills into .codex/skills:
# Install CLI
npm install -g reverse-spec
# Project-level Codex skills
reverse-spec init --target codex
# Or global Codex skills
reverse-spec init --global --target codex
Install both Claude + Codex skills in one command:
reverse-spec init --global --target both
Optional: control npm postinstall target with environment variable:
REVERSE_SPEC_SKILL_TARGET=codex npm install -g reverse-spec
# values: claude | codex | both
Spec Driver uses an independent Codex entrypoint (parallel to reverse-spec):
# Run from repository root
# Install Spec Driver Codex wrapper skills (project-level)
npm run codex:spec-driver:install
# Install globally
npm run codex:spec-driver:install:global
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations