.claude/skills/codex-review/SKILL.md
Code review workflows with Codex CLI including automated reviews, diff analysis, and PR improvements. Use for code review, quality checks, or automated improvement suggestions.
npx skillsauth add adaptationio/skrillz codex-reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Comprehensive code review and analysis workflows with full automation.
Last Updated: December 2025 (GPT-5.2 Release)
# Full automated review
codex exec --dangerously-bypass-approvals-and-sandbox \
--json \
"Review entire codebase:
1. Code quality analysis
2. Security vulnerabilities
3. Performance issues
4. Best practice violations
5. Missing tests
6. Documentation gaps
Generate prioritized report" \
> review-report.json
# Review with fixes
codex exec --dangerously-bypass-approvals-and-sandbox \
"Review code and auto-fix all issues found"
# Review uncommitted changes
git diff | codex exec --dangerously-bypass-approvals-and-sandbox \
"Review this diff and suggest improvements"
# Review PR changes
gh pr view 123 --json body,diff | \
codex exec --dangerously-bypass-approvals-and-sandbox \
"Review PR and provide detailed feedback"
# Apply latest diff from Codex
codex apply
# or
codex a
# Review before applying
git diff # Review what Codex changed
git add -p # Stage selectively
#!/bin/bash
# Complete automated review workflow
auto_review_and_fix() {
local scope="${1:-.}"
codex exec --dangerously-bypass-approvals-and-sandbox \
"Automated review and fix for $scope:
1. Analyze all code
2. Identify issues
3. Auto-fix all issues
4. Run tests
5. Fix test failures
6. Generate review report
7. Create clean git commits" \
> review-summary.md
echo "Review complete: review-summary.md"
}
# Usage
auto_review_and_fix "./src"
# Automated PR review
gh pr view $PR_NUMBER --json diff | \
codex exec --dangerously-bypass-approvals-and-sandbox \
--json \
"Review PR comprehensively:
1. Code quality
2. Security
3. Performance
4. Tests
5. Documentation
Provide actionable feedback"
codex-cli: Main integrationcodex-git: Git workflowscodex-tools: Tool executiondevelopment
Setup secure web-based terminal access to WSL2 from mobile/tablet via ttyd + ngrok/Cloudflare/Tailscale. One-command install, start, stop, status. Use when you need remote terminal access, web terminal, browser-based shell, or mobile access to WSL2 environment.
development
Complete development workflows where Claude writes the code while Gemini and Codex provide research, planning, reviews, and different perspectives. Claude remains the main developer. Use for complex projects requiring expert planning and multi-perspective reviews.
development
Systematic progress tracking for skill development. Manages task states (pending/in_progress/completed), updates in real-time, reports progress, identifies blockers, and maintains momentum. Use when tracking skill development, coordinating work, or reporting progress.
testing
Comprehensive testing workflow orchestrating functional testing, example validation, integration testing, and usability assessment. Sequential workflow for complete skill testing from examples through scenarios to integration validation. Use when conducting thorough testing, pre-deployment validation, ensuring skill functionality, or comprehensive quality checks.