https://github.com/pauhu/claude-codex-review
Codex in Claude Code review skill
https://github.com/pauhu/claude-codex-review
claude code codex review skill
Last synced: about 1 month ago
JSON representation
Codex in Claude Code review skill
- Host: GitHub
- URL: https://github.com/pauhu/claude-codex-review
- Owner: pauhu
- License: mit
- Created: 2026-02-08T12:55:05.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-02-09T22:18:16.000Z (about 1 month ago)
- Last Synced: 2026-02-14T08:53:10.250Z (about 1 month ago)
- Topics: claude, code, codex, review, skill
- Homepage: https://pauhu.ai
- Size: 81.1 KB
- Stars: 9
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Codex Code Review Skill for Claude Code
Adversarial code review: read diffs, run checks, report findings. One pass, five perspectives.
## Install
```bash
mkdir -p .claude/skills/codex-review
curl -sL https://raw.githubusercontent.com/pauhu/claude-codex-review/main/skills/codex-review/SKILL.md \
-o .claude/skills/codex-review/SKILL.md
```
### Share with your team
Drop the skill into your repo:
```
your-project/
└── .claude/
└── skills/
└── codex-review/
└── SKILL.md
```
Everyone who clones the skill will be able to use it.
## Use
```
/codex-review
/codex-review src/auth.ts
/codex-review branch
/codex-review commit
```
## How it works
1. **Scope** — determine what changed
2. **Read** — adversarial review from 5 perspectives (security, correctness, compliance, performance, maintainability)
3. **Run checks** — `tsc --noEmit`, `eslint`, secret scan, TODO grep
4. **Merge** — deduplicate findings
5. **Report** — severity table
### Running checks
If [Codex CLI](https://github.com/openai/codex) is installed, the skill uses it for sandboxed execution. Otherwise it runs `tsc` and `eslint` directly.
```bash
npm install -g @openai/codex
```
## Uninstall
```bash
rm -rf .claude/skills/codex-review
```
## License
MIT — [Pauhu AI Ltd](https://pauhu.ai)