codex-review/SKILL.md
Code review: read diffs, run checks, report findings.
npx skillsauth add stympy/skills 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.
Review $ARGUMENTS.
Read the diffs. Run the checks. Report what's broken. One pass.
git diff + git diff --cachedgit diff main...HEADgit show HEADRead the code first. Understand intent before judging.
Assume the code is broken until proven otherwise.
Run these on the changed files and report failures only:
npx tsc --noEmit 2>&1 | head -50
npx eslint --no-warn . 2>&1 | head -50
Also check:
grep -r 'TODO\|FIXME\|HACK\|XXX' in changed filesIf you have Codex CLI available, you can run checks in its sandbox:
codex exec -s read-only "npx tsc --noEmit && npx eslint --no-warn ."
This is optional. Direct execution works fine for trusted repos.
Combine reading findings with check output. Deduplicate — keep the more specific version.
## Code Review Results
### Findings
| # | Perspective | Severity | File | Issue | Action |
|---|-------------|----------|------|-------|--------|
| 1 | Security | CRITICAL | ... | ... | Fixed |
| 2 | Correctness | HIGH | ... | tsc: Type 'X' not assignable... | Fixed |
| 3 | Compliance | MEDIUM | ... | ... | Noted |
### Summary
- Files reviewed: X
- Findings: X
- Issues fixed: X
### Fixes Applied
- [list of changes made]
Copyright (c) 2026 Pauhu AI Ltd — MIT License — github.com/pauhu/claude-codex-review
development
Deep research before planning. Launches parallel agents to search docs, web, and codebase, then synthesizes findings into actionable context.
development
This skill will be invoked when the user wants to create a PRD. You should go through the steps below. You may skip steps if you don't consider them necessary. 1. Ask the user for a long, detailed description of the problem they want to solve and any potential ideas for solutions. 2. Explore the repo to verify their assertions and understand the current state of the codebase. 3. Interview the user relentlessly about every aspect of this plan until you reach a shared understanding. Walk down e
development
Extract and format Slack huddle transcripts for analysis. Use this skill when processing Slack huddle transcript files (.vtt), when user mentions huddle transcript or Slack transcript, when user uploads a VTT file from Slack, or when user asks to summarize or analyze a Slack meeting/huddle. Handles VTT format transcripts with speaker identification, timestamps, and conversation merging.
development
--- name: refactor-pass description: Perform a refactor pass focused on simplicity after recent changes. Use when the user asks for a refactor/cleanup pass, simplification, or dead-code removal and expects build/tests to verify behavior. --- # Refactor Pass ## Workflow 1. Review the changes just made and identify simplification opportunities. 2. Apply refactors to: - Remove dead code and dead paths. - Straighten logic flows. - Remove excessive parameters. - Remove premature optimizati