← ClaudeAtlas

ultra-verifylisted

Run independent two-model verification with the current host as primary and a read-only Codex advisor, then verify and synthesize the evidence.
rocky2431/ultra-builder-pro-cli · ★ 2 · AI & Automation · score 68
Install: claude install-skill rocky2431/ultra-builder-pro-cli
# Ultra Verify — Independent Two-Model Verification Claude Code remains primary. It writes the first independent analysis, verifies consequential claims, and owns the final answer. Codex is an untrusted read-only advisor. Use this workflow only when the user explicitly asks for cross-model verification. ## Modes - `decision <question>`: architecture or product decision. - `diagnose <symptoms>`: independent root-cause hypotheses. - `audit <scope>`: evidence-backed findings. - `estimate <task>`: estimates with explicit assumptions. ## Preconditions 1. Confirm `codex --version` plus authentication. 2. Define the exact workspace, question, evidence standard, and response shape. 3. Do not send secrets, unrelated files, or an unbounded home directory. 4. Track four steps in the current host plan: primary analysis, advisor launch, completion wait, and verified synthesis. ## 1. Create the session and write the primary view ```bash SESSION_ID="$(date +%Y%m%d-%H%M%S)-verify-<mode>" SESSION_PATH=".ultra/collab/${SESSION_ID}" mkdir -p "${SESSION_PATH}" ``` Write Claude Code's evidence-backed analysis to `${SESSION_PATH}/claude-analysis.md` before reading the advisor output. Record the mode, checkout, scope, and evidence boundary. ## 2. Launch the advisor read-only Give the advisor the bounded raw question and evidence without the primary conclusion. ```bash codex exec -s read-only \ -o "${SESSION_PATH}/codex-output.md" \ "<bounded prompt>" \ 2> "${SESSION_PATH}/codex-