Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

codex-plugin-ccCodex plugin CC 命令行

Agent Skill

codex-plugin-cc 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,705

周安装

509

GitHub Stars

39

下载量

4,113
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:codex-plugin-cc(Codex plugin CC 命令行)
来源仓库:https://github.com/aradotso/trending-skills
仓库路径:skills/codex-plugin-cc
安装命令:
npx skills add https://github.com/aradotso/trending-skills --skill codex-plugin-cc
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aradotso/trending-skills --skill codex-plugin-cc

简介

codex-plugin-cc 处理 GitHub 仓库协作信息,支持 Issue、PR 和代码变更管理。

  • 适用于代码审查、设计挑战委派及子任务分配等开发场景。
  • 提供 /codex:review、/codex:adversarial-review 等命令行接口。
  • 需确认 GitHub CLI 权限及是否允许读取仓库元数据。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Codex Plugin for Claude Code

Skill by ara.so — Daily 2026 Skills collection.

A Claude Code plugin that lets you run OpenAI Codex code reviews and delegate background tasks to Codex directly from your Claude Code session. Use it for read-only code reviews, adversarial design challenges, and handing off investigative or fix tasks to Codex as a subagent.


What It Does

  • /codex:review — Standard read-only Codex code review of uncommitted changes or a branch diff
  • /codex:adversarial-review — Steerable review that challenges design decisions, tradeoffs, and assumptions
  • /codex:rescue — Delegate a task (bug investigation, fix, etc.) to Codex as a background subagent
  • /codex:status — Check progress of background Codex jobs
  • /codex:result — Retrieve output from a finished job (includes Codex session ID for codex resume)
  • /codex:cancel — Cancel an active background job
  • /codex:setup — Verify Codex is installed and authenticated; optionally enable/disable the review gate

Requirements

  • Node.js 18.18 or later
  • A ChatGPT subscription (Free tier works) or an OpenAI API key
  • Claude Code with plugin support

Installation

1. Add the marketplace and install the plugin

/plugin marketplace add openai/codex-plugin-cc
/plugin install codex@openai-codex
/reload-plugins

2. Verify setup

/codex:setup

If Codex CLI is missing, /codex:setup can install it for you via npm, or install manually:

npm install -g @openai/codex

3. Authenticate with Codex

!codex login

Supports ChatGPT account login or API key. Your existing Codex CLI authentication is reused automatically if already logged in.


Key Commands

/codex:review

Runs a standard read-only Codex review on your current work.

# Review uncommitted changes
/codex:review

# Review diff against a base branch
/codex:review --base main

# Run in the background (recommended for multi-file changes)
/codex:review --background

# Run and wait inline
/codex:review --wait

/codex:adversarial-review

Challenges implementation decisions, tradeoffs, and hidden assumptions. Accepts optional free-text focus after flags.

# Basic adversarial review
/codex:adversarial-review

# Target a branch diff with a specific focus
/codex:adversarial-review --base main challenge whether this caching approach was correct

# Run in background, focus on race conditions
/codex:adversarial-review --background look for race conditions and question the retry design

/codex:rescue

Hands off a task to Codex via the codex:codex-rescue subagent.

# Investigate a failing test
/codex:rescue investigate why the tests started failing

# Apply a minimal fix
/codex:rescue fix the failing test with the smallest safe patch

# Resume the most recent Codex session for this repo
/codex:rescue --resume apply the top fix from the last run

# Start fresh (ignore previous session)
/codex:rescue --fresh investigate the regression

# Use a specific model and effort level
/codex:rescue --model gpt-5.4-mini --effort medium investigate the flaky integration test

# Use the faster "spark" model (maps to gpt-5.3-codex-spark)
/codex:rescue --model spark fix the issue quickly

# Run in the background
/codex:rescue --background investigate why the build is failing in CI

You can also trigger rescue via natural language to Claude:

Ask Codex to redesign the database connection to be more resilient.

/codex:status

# List all running and recent jobs for this repo
/codex:status

# Check a specific job
/codex:status task-abc123

/codex:result

# Get result of the most recent finished job
/codex:result

# Get result for a specific job
/codex:result task-abc123

Output includes a Codex session ID. Resume that session directly in Codex:

codex resume <session-id>

/codex:cancel

# Cancel the most recent active job
/codex:cancel

# Cancel a specific job
/codex:cancel task-abc123

/codex:setup — Review Gate

# Enable the stop hook review gate
/codex:setup --enable-review-gate

# Disable it
/codex:setup --disable-review-gate
Warning: The review gate runs a Codex review on every Claude response and blocks the stop if issues are found. This can trigger long Claude/Codex loops and drain usage limits. Only enable it when actively monitoring the session.

Configuration

The plugin uses the same config.toml as the Codex CLI. Configuration is layered:

LocationScope
~/.codex/config.tomlUser-level defaults
.codex/config.toml (project root)Project-level overrides (requires trusted project)

Example: Set default model and effort for a project

# .codex/config.toml
model = "gpt-5.4-mini"
model_reasoning_effort = "xhigh"

Example: Point to a custom OpenAI-compatible endpoint

# ~/.codex/config.toml
openai_base_url = "https://your-custom-endpoint.example.com/v1"

API keys and authentication are managed via codex login — do not hardcode keys in config files. The CLI reads from the authenticated session or from the OPENAI_API_KEY environment variable.


Common Patterns

Review before shipping

/codex:review --base main

Start a long-running review, check back later

/codex:adversarial-review --background look for auth and data-loss risks
/codex:status
/codex:result

Delegate a bug investigation and resume in Codex

/codex:rescue --background investigate why the integration test is flaky
# ... later ...
/codex:result
# Copy session ID from output, then:
codex resume <session-id>

Iterative rescue workflow

# First pass
/codex:rescue investigate the failing build

# Apply what Codex found, continuing the same thread
/codex:rescue --resume apply the recommended fix from the last run

# Start completely fresh
/codex:rescue --fresh re-investigate with a clean slate

Use Claude to delegate naturally

Ask Codex to refactor the authentication module to remove the global state.

Claude will invoke the codex:codex-rescue subagent automatically.


Troubleshooting

/codex:setup says Codex is not installed

npm install -g @openai/codex
# or let /codex:setup install it for you

Codex is installed but not authenticated

!codex login

Supports ChatGPT account or API key. If using an API key directly:

export OPENAI_API_KEY=your-key-here

Background job seems stuck

/codex:status
/codex:cancel task-abc123

Plugin commands not appearing after install

/reload-plugins

Project-level config not being picked up

Project config in .codex/config.toml only loads when the project is trusted by Codex. Run codex directly in the project directory to trust it, or check the Codex advanced config docs.

Review gate creating runaway loops

Disable it immediately:

/codex:setup --disable-review-gate

How It Works Internally

  • The plugin wraps the local codex binary and the Codex app server
  • All jobs run in your local environment against your local repository checkout
  • Authentication, config, and model settings come from your existing Codex CLI setup
  • Background jobs are tracked per-repository and can be resumed in Codex directly via session IDs
  • The codex:codex-rescue subagent is registered in /agents and can be invoked by Claude automatically when you ask it to delegate work to Codex

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.85%
按下载量换算1,475

Claude

31.29%
按下载量换算1,287

Cursor

19.24%
按下载量换算791

Gemini CLI

9.74%
按下载量换算401

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills