Skill Index

maestro-flow/

quality-review

community[command]

Use after execution to evaluate code quality across correctness, security, performance, and architecture

$/plugin install maestro-flow

details

<purpose> Run multi-dimensional code review on a completed phase's changed files. Answers the question "is this code good?" -- complementing maestro-verify ("is the goal met?") and quality-test ("does it work for users?"). Three review levels (quick/standard/deep) scale with task depth, auto-detected from file count. Level definitions, dimension lists, deep-dive rules, and issue creation thresholds defined in workflow review.md. </purpose>

<required_reading> @~/.maestro/workflows/review.md </required_reading>

<deferred_reading>

  • index.json — read when updating phase index after review </deferred_reading>
<context> Phase: $ARGUMENTS (required — phase number or slug)

Flags:

  • --level quick|standard|deep — Explicit review level (default: auto-detect from file count)
  • --dimensions <list> — Comma-separated subset of dimensions to review (overrides level defaults)
  • --skip-specs — Skip loading project specs as review context

All context via state.json.artifacts[]:

related = artifacts.filter(a =>
  a.phase === target_phase && a.milestone === current_milestone
).sort_by(completed_at asc)

Each artifact's type determines its outputs at .workflow/{a.path}/:

  • execute → .summaries/, .task/, verification.json, plan.json (source of files to review)
  • review → review.json (prior verdict, findings — for delta comparison)
  • debug → understanding.md, evidence.ndjson (confirmed root causes)
  • test → uat.md, .tests/ (user-observable gaps)

Extract conclusions from related artifacts that may affect this review. Pass as prior quality context to reviewer agents — avoid redundant work, focus on gaps and regressions.

Pre-load (optional, proceed without)

  • Codebase docs: .workflow/codebase/ARCHITECTURE.md → component boundaries, layer rules
  • Wiki constraints: maestro wiki search "architecture constraint" --json → documented decisions
  • Specs: maestro spec load --category review → review standards, checklists, knowhow tools
  • Role knowledge: maestro wiki list --category review → select relevant → maestro wiki load

Output: REVIEW_DIR = .workflow/scratch/{YYYYMMDD}-review-P{N}-{slug}/ (P{N} = phase number, enables directory-level identification as state.json fallback) </context>

<execution> Follow '~/.maestro/workflows/review.md' completely.

Output writes to REVIEW_DIR (not EXEC_DIR):

  • REVIEW_DIR/review.json — findings, severity distribution, verdict

Register artifact on completion:

Append to state.json.artifacts[]:
{
  id: nextArtifactId(artifacts, "review"),  // REV-001
  type: "review",
  milestone: current_milestone,
  phase: target_phase,
  scope: "phase",
  path: "scratch/{YYYYMMDD}-review-P{N}-{slug}",    // relative to .workflow/
  status: "completed",
  depends_on: exec_art.id,                 // or prior debug/review if re-review
  harvested: false,
  created_at: start_time,
  completed_at: now()
}

Report format and next-step routing by verdict defined in workflow review.md Report Format and Next Step Routing sections.

Next-step routing summary:

  • PASS → /quality-test {phase}
  • WARN → /quality-test {phase} (proceed with caveats)
  • BLOCK → /maestro-plan {phase} --gaps (fix critical findings first)

Completion status:

--- COMPLETION STATUS ---
STATUS: DONE|DONE_WITH_CONCERNS|NEEDS_RETRY
CONCERNS: {description if applicable}
NEXT: /quality-refactor
--- END STATUS ---

Status mapping:

  • DONE — PASS verdict, no critical findings → NEXT: /quality-refactor
  • DONE_WITH_CONCERNS — WARN verdict, issues found but non-blocking → NEXT: /maestro-verify
  • NEEDS_RETRY — BLOCK verdict, critical findings require fix first </execution>

<error_codes>

CodeSeverityConditionRecovery
E001errorPhase argument requiredCheck arguments format, re-run with correct input
E002errorPhase directory not foundCheck arguments format, re-run with correct input
E003errorNo execution results found (no task summaries)Verify execution completed with task summaries
E004errorNo changed files detected in phaseVerify execution completed with task summaries
W001warningSome dimension agents failed, partial resultsRetry failed dimensions or accept partial results
W002warningDeep-dive iteration limit reached with unresolved criticalsAccept current findings or escalate manually
</error_codes>

<success_criteria>

  • Phase resolved and changed files collected from task summaries
  • Review level determined (explicit flag or auto-detected)
  • Project specs loaded as review context (unless --skip-specs)
  • Dimension reviews executed (inline for quick, parallel agents for standard/deep)
  • All dimension results aggregated with severity classification
  • Deep-dive completed if triggered (standard: auto, deep: forced)
  • review.json written with complete findings, severity distribution, verdict
  • Issues auto-created based on level thresholds
  • index.json updated with review status
  • Next step routed by verdict (PASS→test, WARN→test with caveats, BLOCK→plan --gaps) </success_criteria>

technical

github
catlog22/maestro-flow
stars
340
license
unspecified
contributors
1
last commit
2026-05-25T02:58:12Z
file
.claude/commands/quality-review.md

related