con un clic
codex-review
// Hand off code review to OpenAI Codex CLI. Use when asked to "review code with codex",
// Hand off code review to OpenAI Codex CLI. Use when asked to "review code with codex",
Expert Architecture Decision Record (ADR) creation and lifecycle management based on Olaf Zimmermann's methodology. Use when creating ADRs, reviewing architectural decisions, evaluating decision readiness, writing MADR templates, assessing decision quality, or managing ADR logs. Covers the full lifecycle from readiness (START criteria) through creation, MADR formatting, completion (ECADR criteria), and ongoing maintenance.
Expert logging guidance based on Boris Tane's loggingsucks.com philosophy. Use when implementing logging, adding observability, debugging production issues, or reviewing code that includes log statements. Covers wide events architecture, structured logging, smart sampling, and high-cardinality field design.
Expert full-cycle enterprise sales strategist for B2B SaaS. Use when planning sales strategy, pipeline management, deal progression, account planning, competitive displacement, or territory optimization. Covers multi-threading, executive engagement, champion development, buying committee navigation, and complex deal orchestration. Use for enterprise selling, account expansion, land-and-expand, and quota attainment.
Expert community-led growth and community management guidance. Use when building developer communities, Discord/Slack communities, online communities, managing community platforms, designing member onboarding, creating engagement programs, running ambassador programs, measuring community health, setting up moderation systems, or implementing DevRel strategies. Use for community-led growth, member activation, user-generated content programs, and community governance.
Expert competitive intelligence and strategy guidance for B2B/SaaS companies. Use when conducting competitive research, creating battlecards, analyzing win/loss data, building market landscape maps, positioning against alternatives, handling competitive objections, writing comparison pages, or developing sales enablement for competitive situations. Use for competitive monitoring, feature comparisons, and market intelligence gathering.
Master orchestrator that chains all Remotion video creation skills together in a single automated pipeline. Takes a creative brief and produces a complete, production-ready Remotion video project. Use when starting a new video from scratch, when asked to "create a video", "make a video", "build a complete video", or "video from idea to code".
| 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