بنقرة واحدة
judgment-day
Dual-model adversarial review: Claude and Copilot review independently, verdicts are synthesized.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Dual-model adversarial review: Claude and Copilot review 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: Claude and Copilot review independently, verdicts are synthesized. |
| 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__invencible-memory__memory_recall","mcp__invencible-memory__memory_save","mcp__invencible-hub__delegate_task","mcp__invencible-hub__get_task"] |
| model | sonnet |
| effort | high |
| user-invocable | true |
| hub-skill-ids | ["review","reasoning"] |
Two independent reviewers — Claude (you) and Copilot CLI (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-copilot"
)
memory_recall(topic_key="sdd-<change_id>-spec")memory_save(topic_key="sdd-<change_id>-review-claude", ...)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.