Loading...
Loading...
Invokes Codex CLI as a second opinion. Use for reviewing plans, code, architectural decisions, or getting an independent perspective from OpenAI's reasoning models.
npx skill4agent add vinta/hal-9000 codexcodex exec# Direct prompt
codex exec "Read the files in src/ and review them for bugs"# Pipe via stdin
git diff main..HEAD | codex exec "Review this diff for issues"-m MODELgpt-5.2-codex-c key=value-c model="gpt-5.2-codex"-p PROFILE~/.codex/config.toml-C DIR--full-auto-s SANDBOX_POLICYread-onlyworkspace-write--skip-git-repo-checkcodex execgpt-5.2-codexgpt-5.2codex-s read-onlyworkspace-writecat plan.md | codex exec -m gpt-5.2-codex -s read-only \
"Review this plan for risks, missing steps, and unclear assumptions.
Return:
1) Critical issues
2) Medium risks
3) Suggested improvements
4) Questions to clarify"git diff main..HEAD | codex exec -m gpt-5.2-codex -s read-only \
"Review this diff for bugs, regressions, security issues, and missing tests.
Return numbered findings with severity and file:line references."cat design.md | codex exec -m gpt-5.2-codex -s read-only \
"Evaluate this architecture for scalability, fault tolerance, and operational risk.
Call out assumptions and suggest alternatives where applicable."codex exec -m gpt-5.2-codex -s read-only \
"Review the codebase with focus on correctness, edge cases, and missing tests.
Read these folders: src/, scripts/, and packages/.
Return numbered findings with severity and file:line references."