judgment-day

Orchestrates parallel adversarial code review with two blind judge sub-agents and iterative fix cycles.

Updated Apr 10, 2026
One-click install
npx skills add https://github.com/Balthael/ciberbal-ai --skill judgment-day-balthael
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: judgment-day
Source: https://github.com/Balthael/ciberbal-ai/tree/main/internal/assets/skills/judgment-day
Command: npx skills add https://github.com/Balthael/ciberbal-ai --skill judgment-day-balthael

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Single-reviewer code reviews miss edge cases and suffer from individual blind spots, letting critical bugs reach production. This Skill runs two independent blind judge sub-agents in parallel against the same target, synthesizes their findings, and iterates fixes until both judges pass or the review escalates. ## Core Features & Use Cases - Parallel Blind Review: Launches two independent judge sub-agents simultaneously with identical criteria, ensuring no cross-contamination between reviewers. - Verdict Synthesis: Classifies findings as Confirmed, Suspect, or Contradiction, and distinguishes real warnings from theoretical ones to avoid nit-picking loops. - Fix and Re-judge Cycle: Delegates a separate Fix Agent for confirmed issues, then re-launches both judges, escalating to the user after two iterations if issues remain. - Project Standards Injection: Resolves project-specific skill registry rules and injects them into judge and fix prompts so reviews match codebase conventions. - Use Case: Before merging a significant feature, trigger the protocol to have two adversarial reviewers independently audit the code, apply confirmed fixes, and only approve once both judges return clean verdicts. ## Quick Start Ask the agent to run judgment day on the files or feature you want reviewed, for example by saying "run judgment day on the auth module".

Frequently Asked Questions about judgment-day

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run an adversarial code review with multiple AI reviewers?

Trigger the protocol by saying "judgment day" and specifying the target files or feature. It launches two independent judge sub-agents in parallel, synthesizes their findings into a verdict table, and iterates fixes until both judges pass.

How does parallel blind review reduce missed bugs in code review?

Two judges review the same target independently with no knowledge of each other, so findings confirmed by both carry high confidence. Findings from only one judge are flagged as suspects for triage rather than auto-fixed.

What happens when the two review judges disagree on a finding?

Disagreements are classified as contradictions or suspect findings in the verdict table. They are reported to the user for manual triage and are not automatically fixed, preventing low-confidence changes.

When does the review loop stop iterating fixes?

The loop stops when both judges return clean verdicts, or after two fix iterations when remaining issues are escalated to the user. The user decides whether to continue iterating or accept an escalated judgment.

Can I add custom review criteria to the adversarial judges?

Yes, custom review criteria provided by the user are injected identically into both judge prompts. Project-specific standards from the skill registry are also auto-resolved and included so reviews match codebase conventions.