From nova-plugin
Run Codex verification against an existing review.md and the current branch state. Use when Claude Code or a human has already applied fixes and only needs a focused verify pass, merge recommendation, and residual blockers.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nova-plugin:nova-codex-verify-only Example: codex-verify-only REVIEW_FILE=.codex/codex-review-fix/latest-artifacts/review.md CHECKS_FILE=.codex/codex-review-fix/latest-artifacts/checks.txtExample: codex-verify-only REVIEW_FILE=.codex/codex-review-fix/latest-artifacts/review.md CHECKS_FILE=.codex/codex-review-fix/latest-artifacts/checks.txtThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
| Parameter | Required | Default | Notes |
| Parameter | Required | Default | Notes |
|---|---|---|---|
REVIEW_FILE | Yes | None | Safety-boundary path to the existing review.md passed as --review-file. |
CHECKS_FILE | No | Auto-detect when safe | Local checks output passed as --checks-file when provided. |
BASE | No | Auto-detect | Baseline branch passed as --base. |
OUTPUT_DIR | No | Review directory | Verification artifact directory passed as --output-dir. |
KEY=value, --flag value, and --flag=value forms from $ARGUMENTS.REVIEW_FILE.REVIEW_FILE.nova-plugin/skills/_shared/parameter-resolution.md.Bash.nova-plugin/skills/_shared/safety-preflight.md.REVIEW_FILE is required and passed as --review-file <REVIEW_FILE>.CHECKS_FILE, when provided, is passed as --checks-file <CHECKS_FILE>.BASE, when provided, is passed as --base <BASE>.OUTPUT_DIR, when provided, is passed as --output-dir <OUTPUT_DIR>.nova-plugin/skills/_shared/output-contracts.md.nova-plugin/skills/_shared/artifact-policy.md./codex-verify-only for verify against an existing review file.KEY=value or --flag value; natural-language payload is accepted when unambiguous.| Rationalization | Required Response |
|---|---|
| "This is small enough to skip validation." | Run the focused check or state why it is unavailable. |
| "The existing output contract is obvious." | Follow the shared output contract and the skill-specific output format exactly. |
| "The nearby cleanup is harmless." | Keep scope to the requested execution basis and note unrelated cleanup separately. |
| "A plausible result is enough." | Report command evidence, artifact paths, or an explicit skipped-check reason. |
基于已有 review.md 做定向 verify。
review.md 路径CHECKS_FILECLAUDE_PLUGIN_ROOT 可用,然后调用 ${CLAUDE_PLUGIN_ROOT}/skills/nova-codex-review-fix/scripts/codex-verify.sh --review-file <path>verify.md,确认已解决、未解决和剩余阻塞项verify.runtime-environment.txt,核对执行目录、脚本目录、Git/Bash/Node/Codex 路径和版本.codex verify artifact,不允许修改项目代码Migrated from the pre-thin slash command contract for /codex-verify-only (nova-plugin/commands/codex-verify-only.md).
你是 Claude Code,但本命令只负责编排 Codex verify,不做新的实现修改。
从 $ARGUMENTS 中提取:
REVIEW_FILE:必填,上一轮 review.mdCHECKS_FILE:可选,本地 checks 输出文件BASE:可选,默认自动识别如果缺少 REVIEW_FILE,必须停止并要求补充。
先确认 CLAUDE_PLUGIN_ROOT 可用;如果不可用,必须停止并提示插件未正确启用。
bash "${CLAUDE_PLUGIN_ROOT}/skills/nova-codex-review-fix/scripts/codex-verify.sh" --review-file <REVIEW_FILE>BASE,追加 --base <BASE>CHECKS_FILE,追加 --checks-file <CHECKS_FILE>review.md 直接做开放式 reviewGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub lliangcol/llm-plugins-fusion --plugin nova-plugin