codex-verify
Dispatch an independent Codex verification job for the current changes
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Dispatch an independent Codex verification job for the current changes
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | codex-verify |
| description | Dispatch an independent Codex verification job for the current changes |
| argument-hint | [system-name or class-name] |
Dispatch an independent Codex review via the codex-plugin-cc. Codex reviews with no shared Claude context.
Target: $ARGUMENTS (if empty, verify all uncommitted changes).
$ARGUMENTS provided: find files matching that system/class in src_new/git diff --name-only and git ls-files --others --exclude-standard.lua files only/codex:rescue Review these Lua files for the LEVI-Achaea combat system:
FILES: [file list]
This is a Mudlet Lua 5.1 combat system for Achaea (text MUD). Focus on:
1. Lua 5.1 compatibility -- no 5.2+ features (goto, bitwise, string.format %a)
2. Variable scoping -- missing local declarations creating accidental globals
3. Balance/equilibrium gating -- commands sent without checking bal/eq state
4. Affliction ID correctness -- verify against canonical Achaea affliction set
5. GMCP data handling -- nil checks on gmcp table lookups, pcall around parsing
6. Trigger pattern correctness -- regex matches intended text, no catastrophic backtracking
7. State machine gaps -- missing state transitions or unreachable states
8. Dead code -- unreachable branches, unused locals, commented-out blocks
Rate each finding: CRITICAL / HIGH / MEDIUM / LOW
Format: [SEVERITY] file.lua:line -- description -- remediation
Use the Monitor tool to stream Codex progress. When complete, proceed to Step 4.
Alternatively, check manually: /codex:status
/codex:result
CODEX VERIFICATION REPORT
==========================
Target: [system or files]
[Findings grouped by severity]
CRITICAL: N
HIGH: N
MEDIUM: N
LOW: N
VERDICT: CLEAN / ISSUES FOUND
Incrementally fix build errors with minimal diffs, one error at a time
Inspect all changed files, group by logical concern, and guide atomic per-concern commits
Launch parallel deep-dive agents to review completed work for quality, standards, and completeness
Regression-safe cleanup of AI-generated bloat in Lua code. Deletion-first, requires passing tests before starting
Create a GitHub issue for a feature, bug fix, or crash with structured sections
Scaffold a new Architecture Decision Record, auto-numbered from existing ADRs