一键导入
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.