원클릭으로
judgment-day
Dual-model adversarial review: local and delegated reviewers audit independently, verdicts are synthesized.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Dual-model adversarial review: local and delegated reviewers audit independently, verdicts are synthesized.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Implement the SDD task list. Read tasks and design from memory, write code, run tests.
Archive all SDD artifacts for a change as a single completed record in memory.
Write the technical design for a planned change: components, interfaces, data flows, edge cases.
Explore the codebase to build context for a planned change. First phase of the SDD workflow.
Propose 2–3 solution approaches for a planned change, evaluating trade-offs and recommending one.
Write a formal specification for a planned change: goals, acceptance criteria, constraints.
| name | judgment-day |
| description | Dual-model adversarial review: local and delegated reviewers audit independently, verdicts are synthesized. |
| compatibility | opencode |
| when_to_use | After sdd-apply, as an enhanced alternative to sdd-verify. Also usable standalone for any code review. |
| allowed-tools | ["Read","Bash","Glob","Grep","mcp__n3rv-memory__memory_recall","mcp__n3rv-memory__memory_save","mcp__n3rv-hub__delegate_task","mcp__n3rv-hub__get_task"] |
| model | high |
| effort | high |
| user-invocable | true |
| hub-skill-ids | ["review","reasoning"] |
Two independent reviewers — local reviewer (you) and delegated reviewer (via hub) — review the same code without seeing each other's findings. Verdicts are synthesized into a confidence-weighted table.
delegate_task(
skill_id="review",
description="Independent code review (judgment-day blind pass).\n\n"
+ "Review scope: <files changed in this SDD run>\n"
+ "Spec to check against: <sdd-<change_id>-spec from memory>\n\n"
+ "Output format — for each finding:\n"
+ " SEVERITY: CRITICAL|WARNING|SUGGESTION\n"
+ " FILE: <path>:<line>\n"
+ " ISSUE: <description>\n"
+ " FIX: <recommended fix>\n\n"
+ "Save findings to memory: topic_key=sdd-<change_id>-review-delegated"
)
memory_recall(topic_key="sdd-<change_id>-spec")memory_save(topic_key="sdd-<change_id>-review-local", ...)get_task(task_id=<delegated_task_id>)
Compare findings from both reviewers. Classify each finding:
Save synthesis to memory:
Judgment Day: <change_id>sdd-<change_id>-judgmentcontext## Verdict Table
| Finding | Severity | Reviewer | Location | Issue |
|---------|----------|----------|----------|-------|
| <desc> | CRITICAL | CONFIRMED | file:line | ... |
...
## Fix Loop Status
Iteration: <N> / max 2
## Escalations
<contradictions requiring human judgment>
When used outside the SDD workflow, replace sdd-<change_id>-spec references with a
description of what the code is supposed to do, and scope the review to the files you specify.