用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ncklrs/startup-os-skills --skill codex-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | codex-review |
| description | Hand off code review to OpenAI Codex CLI. Use when asked to "review code with codex", |
Hand off code review tasks to OpenAI's Codex CLI for an independent AI perspective on code changes.
When invoked, this skill launches the Codex CLI's review command in the terminal to analyze code changes. Codex provides a fresh perspective using OpenAI's models, which can catch different issues than Claude might.
Review all local changes not yet committed:
codex review --uncommitted
Review changes between current branch and a base branch:
codex review --base main
Review changes introduced by a single commit:
codex review --commit <SHA>
Add specific review focus areas:
codex review --uncommitted "Focus on security vulnerabilities and error handling"
IMPORTANT: When this skill is invoked, Claude MUST execute the appropriate codex review command using the Bash tool. Do not just describe what to do — actually run the command.
| User Says | Command to Run |
|---|---|
/codex-review (no args) | codex review --uncommitted |
/codex-review uncommitted | codex review --uncommitted |
/codex-review PR or /codex-review main | codex review --base main |
/codex-review PR #123 | First gh pr checkout 123, then codex review --base main |
/codex-review <branch> | codex review --base <branch> |
/codex-review <sha> | codex review --commit <sha> |
# Full options
codex review [OPTIONS] [PROMPT]
Options:
--uncommitted Review staged, unstaged, and untracked changes
--base <BRANCH> Review changes against the given base branch
--commit <SHA> Review the changes introduced by a commit
--title <TITLE> Optional commit title to display in review summary
-c, --config <k=v> Override config (e.g., -c model="o3")
-h, --help Print help
# Review everything you've changed locally
codex review --uncommitted
# Review your feature branch against main before opening PR
codex review --base main "Check for breaking changes and missing tests"
# Security-focused review of uncommitted changes
codex review --uncommitted "Focus on: SQL injection, XSS, auth bypass, secrets exposure"
codex login)codex apply after review to apply any suggested diffs