ultraplan-review
Generic plan-review framing — what each checker catches, severity semantics, and the revision contract
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generic plan-review framing — what each checker catches, severity semantics, and the revision contract
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Handle cross-platform compatibility including file paths, environment detection, platform-specific dependencies, and testing across Windows, macOS, and Linux. Use when dealing with platform-specific code or OS compatibility.
Use when creating, modifying, debugging, or scaffolding OMP extensions, slash commands, custom tools, event hooks, TUI primitives, ExtensionAPI integrations, .omp/extensions, .omp/commands, .omp/tools, package.json omp.extensions, or OMP lifecycle handlers.
Design Director state machine for `/supi:ui-design`. Drives 9 model-owned phases from scope selection through user review, producing a validated HTML mockup artifact.
Guides the harness-engineering pipeline — turn a codebase into one that resists agentic slop with agent-neutral docs, mechanically enforced architecture, and three runtime guardrails
Gray-area extraction stage — surfaces decisions the user must make before the plan can be authored, without expanding scope
Structured extraction of the user's seed prompt into a typed intake artifact — first stage of the UltraPlan authoring pipeline
| name | ultraplan-review |
| description | Generic plan-review framing — what each checker catches, severity semantics, and the revision contract |
Apply one or more plan checkers to a synthesized draft. This stage runs after synthesize and gates the approve stage. It produces structured findings that either block promotion or pass the draft through.
| Aspect | Detail |
|---|---|
| Inputs | Current draft (authored.json + manifest.json); iteration number; prior findings if revising |
| Output | Findings written via ultraplan_review_finding (one call per finding) |
| Checkers | structure-checker, scope-checker, tdd-checker |
| Gate | Zero BLOCKER findings required to advance to approve |
| Loop | If BLOCKERs remain after revision, the pipeline returns to synthesize |
| Checker | What It Catches |
|---|---|
structure-checker | Missing stacks, missing domains, missing scenario fields, duplicate IDs, dependency cycles |
scope-checker | Uncovered intake success criteria, scope creep, silently included deferred ideas |
tdd-checker | Wrong slot for level, missing red-test step, missing proof obligations |
| Severity | Meaning | Gate |
|---|---|---|
BLOCKER | The plan cannot be executed correctly as written. The synthesize stage MUST revise before re-review. | Blocks approve |
WARNING | The plan can execute, but a quality or coverage gap exists. The planner SHOULD fix, but approve MAY proceed. | Does not block |
Use BLOCKER only when execution would fail, produce wrong output, or violate a structural invariant. Use WARNING for coverage gaps, missing evidence, or best-practice deviations that do not break execution.
Each ultraplan_review_finding call produces one finding:
ultraplan_review_finding({
id: string, // unique within this iteration, e.g. "s1-missing-unit-slot"
severity: "BLOCKER" | "WARNING",
source: "structure-checker" | "scope-checker" | "tdd-checker",
target: {
stack: "frontend" | "backend" | "infrastructure" | null,
domainId: string | null,
scenarioId: string | null
},
message: string, // what is wrong
recommendation: string // concrete fix the planner can act on
})
The message MUST identify the exact location (stack, domain, scenario ID when applicable). The recommendation MUST be actionable — say what to add, remove, or change.
When the pipeline returns to synthesize with findings:
ultraplan_synth_draft is called again and the review stage re-runs on the new draft.Each checker runs independently and writes its own findings. The pipeline runner aggregates all findings for the iteration. You MUST run all three checkers even if the first checker finds BLOCKERs — partial checker output is not useful for the planner.
| MUST DO | MUST NOT DO |
|---|---|
| Run all three checkers every iteration | Stop after the first BLOCKER |
| Target every finding to a specific location | Emit vague findings without stack/domain/scenario |
| Use BLOCKER only for structural or execution failures | Escalate style or preference issues to BLOCKER |
| Provide an actionable recommendation for every finding | Report a finding without a fix direction |
Call ultraplan_review_finding once per distinct issue | Batch multiple issues into one finding |