Wield
Workflows
Wield10 min readWield Design System

/ultra-review

A persona-diverse code review that fans out across parallel review lenses, gates findings by confidence, merges and deduplicates, then adversarially verifies each survivor.

/ultra-review

/ultra-review is a persona-diverse code review workflow. It resolves a diff, classifies what the diff touches, fans out one reviewer per lens in parallel, then adversarially verifies each surviving finding before reporting. Findings corroborated by multiple lenses are flagged as higher-confidence.

A workflow, not a skill — install it first with scripts/install-workflows.sh (see Workflows). For a lighter, single-session review, use /wield:code-audit.

Invocation

/ultra-review works on whatever diff you point it at:

/ultra-review            # your pending (uncommitted) changes
/ultra-review #123       # a pull request
/ultra-review abc1234    # a specific commit
/ultra-review main       # the current branch vs. its base

How it works

Scope

Resolves the diff and classifies what it touches — auth, input handling, the database, API surface, async/UI code — to decide which review lenses apply.

Review

Fans out one reviewer per selected lens, in parallel. Each reviewer goes deep on its single concern, assuming sibling reviewers cover the rest.

Verify

Adversarially verifies each surviving finding, then merges and deduplicates — tracking which lenses corroborated each one.

The review lenses

The lenses are selected by what the diff touches, so a small change gets a focused review and a broad change gets a wide one (2–6 lenses):

LensWhen it's applied
correctnessAlways.
maintainabilityAlways.
securityWhen the diff touches auth or input handling.
performanceWhen the diff touches the database.
api-contractWhen the diff touches API surface.
concurrencyWhen the diff touches async or UI code.

A trivial diff collapses to a single correctness lens; a change spanning auth, the database, an API, and async code engages all six.

What you get back

Findings split into blocking (high-confidence) and needs-verification, each annotated with the lenses that corroborated it — so a bug three lenses independently flagged stands out from one a single lens raised.

/ultra-review spawns a reviewer per lens plus verifiers, so it's a heavier, higher-coverage pass than /wield:code-audit. Reach for it before merging something substantial; use the skill for everyday reviews.

On this page