← ClaudeAtlas

review-designlisted

This skill should be used for DESIGN.md artifact reviewer — validates design quality against the SB design template: required sections, non-empty screen/component fields, behavior and state tables, and orphaned component detection against SPEC.md
alo-exp/silver-bullet · ★ 5 · AI & Automation · score 76
Install: claude install-skill alo-exp/silver-bullet
# review-design DESIGN.md reviewer skill. Implements the artifact-reviewer framework interface to validate a DESIGN.md file against the SB design quality criteria. Returns structured PASS/ISSUES_FOUND findings. ## Loading Rules This reviewer MUST load the following before executing any review: - `@skills/artifact-reviewer/rules/reviewer-interface.md` — interface contract (input/output shape, prohibitions) - `@skills/artifact-reviewer/rules/review-loop.md` — 2-pass loop mechanism and audit trail format ## Usage ``` /artifact-reviewer <design-path> [--source-inputs <spec-path>] ``` Or invoke directly: ``` /review-design <design-path> [--source-inputs <spec-path>] ``` ## Input | Field | Type | Required | Description | |-------|------|----------|-------------| | artifact_path | string | YES | Path to DESIGN.md file to review | | source_inputs[0] | string | NO | Path to linked SPEC.md for cross-reference | | review_context | string | NO | Additional context string | ## Quality Criteria Read the artifact at `artifact_path` completely before evaluating any criterion. Validate every criterion explicitly — do NOT skip sections. ### QC-1: Required Sections Present Check that all of the following section headings exist (case-insensitive `##` level): - `## Screens` - `## Components` - `## Behavior Specifications` - `## State Definitions` **If any section is missing:** Emit ISSUE finding `DESIGN-F01` (increment suffix per missing section) with severity ISSUE, location = docu