Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By xiaolai
One plugin to bridge and delegate across Claude Code, Codex CLI, and Gemini CLI — single-source AGENTS.md, shared skills, mirrored hooks and MCP servers, and full Claude↔Codex bidirectional delegation.
npx claudepluginhub xiaolai/claude-plugin-marketplace --plugin cc-suiteAgent auditor — audit Claude Code agent definitions for triggering accuracy, system prompt quality, tool appropriateness, and example coverage
Command auditor — audit Claude Code slash commands for schema, workflow clarity, tool selection, error handling, and output specification
Audit→fix→verify loop — finds issues, fixes them, verifies fixes, repeats until clean or you stop
Repo-wide natural language programming auditor — discover and audit all NL artifacts (prompts, skills, agents, commands, rules, hooks, plugins, specs, plans) in any repository
Plugin auditor — audit Claude Code plugin artifacts for schema, specification, security, and structural defects
Full audit→fix→verify cycle: Claude audits, Codex fixes, Claude verifies. Repeats up to 3 rounds until all issues are resolved or the user stops. Claude does all code reading and judgment; Codex does all file editing.
Ask Claude Code to audit a file or set of files and return structured findings. Claude reads the code with fresh eyes and independent judgment — Codex does not self-review. Supports mini (5-dimension) and full (9-dimension) depth.
Canonical reference for Claude Code plugin artifact schemas, hook events, frontmatter fields, and naming conventions. Used to inject domain knowledge into Codex audit prompts. Run /cc-suite:refresh-knowledge to update from latest docs.
Send a bug or failing test to Claude Code for root-cause analysis and fix. Use when you've hit an error you can't trace, a test is failing for unclear reasons, or a behavior is wrong and the cause is deep in the codebase.
Delegate an implementation task to Claude Code. Use when you want Claude to write, edit, or refactor code directly in the project. Claude has full read/write access and will make the changes autonomously.
Runs pre-commands
Contains inline bash commands via ! syntax
Bash prerequisite issue
Uses bash pre-commands but Bash not in allowed tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Standalone image generation plugin using Nano Banana MCP server. Generates and edits images, icons, diagrams, patterns, and visual assets via Gemini image models. No Gemini CLI dependency required.
Memory compression system for Claude Code - persist context across sessions
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Intelligent prompt optimization using skill-based architecture. Enriches vague prompts with research-based clarifying questions before Claude Code executes them
AI image generation Creative Director powered by Google Gemini Nano Banana models. Claude interprets intent, selects domain expertise, constructs optimized prompts, and orchestrates Gemini for best results.
Natural-Language Programming Manager — scan, lint, and write NL artifacts with Claude-native quality scoring
A 260-token system prompt that overrides three structural presumptions every RLHF-trained LLM inherits from training: that you want confirmation, that old scarcity still applies, that best practices are ceilings.
English language coach for non-native speakers — auto-corrects prompts, translates non-English, refines with :: prefix, tracks improvement over time
Initialize a multi-agent workspace with shared configuration for Claude Code, Codex CLI, and Gemini CLI
Documentation quality and freshness enforcer — detect staleness, check accuracy, measure coverage, and auto-generate docs
One Claude Code plugin to synchronize Claude Code, Codex CLI, and Gemini CLI on the same project — and let them delegate work to each other.
Each tool reads from its own files. CLAUDE.md, AGENTS.md, GEMINI.md sit next to each other and drift. Skills written for Claude aren't visible to Codex. Hooks must be maintained in two places. MCP servers declared in .mcp.json are invisible to Codex's .codex/config.toml. And there's no built-in way to say "ask Codex for an adversarial review" from Claude, or "ask Claude to plan this" from Codex.
cc-suite fixes all of this with a single plugin install:
| Feature | What it does |
|---|---|
| Single-source instructions | AGENTS.md is the source of truth. CLAUDE.md and GEMINI.md become thin @AGENTS.md imports. |
| Shared skills | .agents/skills/ is symlinked to .claude/skills/. Every Claude skill is automatically visible to Codex and Gemini. |
| Mirrored hooks | Syncs the five shared hook events from .claude/settings.json into .codex/hooks.json. Same scripts, both tools. |
| MCP parity | Mirrors .mcp.json project servers into .codex/config.toml so Codex sees the same servers. |
| Claude → Codex delegation | Registers the codex-cli MCP server in .mcp.json. Claude can call /audit, /implement, /bug-analyze, and more directly. Full Codex job tracking, background mode, and stop-time review gate included. |
| Codex → Claude delegation | Registers the claude-code MCP server (claude-octopus) in .codex/config.toml. Codex skills $claude-review, $claude-plan, $claude-implement, $claude-debug delegate to Claude and return structured results. |
claude plugin install cc-suite@xiaolai --scope project
npx -y at runtime, no pre-install needed. Uses the same credential store as Claude CLI (~/.claude/.credentials.json)./cc-suite:init
Walks through the full setup: AGENTS.md bridge, MCP server registration, and project audit config. All steps are idempotent — safe to re-run.
After init, edit AGENTS.md — all three tools pick up changes automatically.
| Command | What it does |
|---|---|
/cc-suite:init | Full setup: bridge init, Codex MCP, Claude MCP, project config. Idempotent. |
/cc-suite:bridge-skills | Create .agents/skills → .claude/skills symlink. |
/cc-suite:bridge-hooks | Mirror .claude/settings.json hooks → .codex/hooks.json. |
/cc-suite:status | Bridge health, MCP registration, and Codex runtime checks. |
/cc-suite:unbridge | Tear down bridge artifacts, restoring CLAUDE.md from AGENTS.md. |
All commands delegate to Codex via the codex-cli MCP server. Codex runs in a sandboxed subprocess; Claude tracks jobs, handles background mode, and can continue threads.
| Command | What it does |
|---|---|
/audit | Run a mini (5-dimension) or full (9-dimension) audit via Codex |
/audit-fix | Audit → fix → verify loop. Iterates up to 3 rounds. |
/audit-agent | Multi-agent parallel audit (coordinator + specialists) |
/audit-plugin | Audit Claude Code plugin artifacts |
/audit-skill | Audit Codex SKILL.md files |
/audit-rules | Audit .claude/rules/ files |
/audit-nlp | Audit natural-language programming artifacts |
/implement | Implement a feature or change via Codex |
/review-plan | Generate an implementation plan via Codex |
/bug-analyze | Root-cause analysis for a failing test or error |
/verify | Verify that a fix or implementation is correct |
/cancel | Cancel a running Codex job |
/continue | Continue a previous Codex thread by ID |
/result | Show the output of a completed Codex job |
/status | Show active and recent Codex jobs |
/preflight | Check Codex CLI availability and list available models |
/setup | Manage the stop-time review gate |
/refresh-knowledge | Update the Claude Code conventions skill from latest docs |
When Codex has claude-code registered in .codex/config.toml, it can invoke these skills to delegate tasks back to Claude: