codex-verify
SolidVerify a plan or document using Codex as independent reviewer with PASS/FAIL verdict. Use when asked "codex 검수", "verify this plan", "플랜 검수".
AI & Automation 47 stars
4 forks Updated 4 days ago MIT
Install
Quality Score: 87/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Codex Document Verification + Double-Check
You are a **translator + executor + double-checker**. The user wants an
independent review of a plan or document. Your job is to hand the
document to Codex **without ever loading it into your own context**, so
your follow-up evaluation is genuinely independent.
For code review use `/codex-review`. For research use `/codex-research`.
## Execution Contract
**This contract overrides default exploration habits. Read it before Phase 1.**
| Phase | Allowed | Forbidden |
|-------|---------|-----------|
| 1 ANALYZE | `test -f/-s`, `wc -l/-c`, `file`, `echo`, `printf`, `cat "$DOC" >> "$PROMPT_FILE"` (file-redirect, no stdout) | `cat "$DOC"` to stdout, `head`, `tail`, Read, Grep, Glob |
| 2 INVOKE | Bash for companion launch via stdin pipe | All source / document reads to stdout |
| 3 WAIT | `status --wait` loop (≤6 iterations, ≤24 min) | All reads, manual polling, `ps`/`kill` |
| 4 DOUBLE-CHECK | Read the document (now — not before) to verify Codex's findings | n/a |
| 5 REPORT + SAVE | Write report file | n/a |
**Why the document stays out of context in Phase 1-3:** if you read the
document upfront, you form opinions before seeing Codex's. The
double-check is then biased — you'll rationalize away valid catches.
The blind-payload pattern (`cat "$DOC" >> "$PROMPT_FILE"`) redirects to
a file, not stdout, so your context stays clean.
Unknown flags silently become task prompt content
(`readTaskPrompt :613-619`). Phase 1 is the only safet...
Details
- Author
- LeeJuOh
- Repository
- LeeJuOh/claude-code-zero
- Created
- 4 months ago
- Last Updated
- 4 days ago
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
codex-review
Run Codex code review with Claude's independent double-check. Use when asked "codex review", "codex 리뷰", or wants Codex to review code changes. For adversarial review use /codex-adversarial.
47 Updated 4 days ago
LeeJuOh AI & Automation Solid
codex-research
Deep-dive research using Codex with Claude's cross-model synthesis. Use when asked "codex research", "codex 리서치", "딥다이브". Not for code review or plan verification.
47 Updated 4 days ago
LeeJuOh AI & Automation Solid
codex-adversarial
Run Codex adversarial review — actively tries to break confidence in the change. Use when asked "adversarial review", "적대적 리뷰", or wants thorough security/correctness challenge.
47 Updated 4 days ago
LeeJuOh