← ClaudeAtlas

artifact-reviewerlisted

This skill should be used for framework for artifact review — defines the standard interface, 2-pass loop, state tracking, and audit trail that all SB artifact reviewers implement
alo-exp/silver-bullet · ★ 5 · AI & Automation · score 76
Install: claude install-skill alo-exp/silver-bullet
# artifact-reviewer Orchestrator skill for artifact review. Accepts an artifact path and optional reviewer name, dispatches to the appropriate reviewer skill, runs the 2-consecutive-pass review loop, records per-artifact state, and writes the REVIEW-ROUNDS.md audit trail. ## Usage ``` /artifact-reviewer <artifact-path> [--reviewer <reviewer-skill-name>] ``` If `--reviewer` is omitted, the reviewer is auto-detected from the artifact filename using the mapping table below. ## Artifact-to-Reviewer Mapping | Artifact Pattern | Reviewer Skill | Notes | |-----------------|---------------|-------| | *-PLAN.md | gsd-plan-checker | Existing GSD reviewer | | Code changes | gsd-code-reviewer | Existing GSD reviewer | | VERIFICATION.md | gsd-verifier | Existing GSD reviewer | | Security findings | security | Existing SB reviewer | | SPEC.md | review-spec | New SB reviewer | | DESIGN.md | review-design | New SB reviewer | | REQUIREMENTS.md | review-requirements | New SB reviewer | | ROADMAP.md | review-roadmap | New SB reviewer | | CONTEXT.md | review-context | New SB reviewer | | RESEARCH.md | review-research | New SB reviewer | | INGESTION_MANIFEST.md | review-ingestion-manifest | New SB reviewer | | UAT.md | review-uat | New SB reviewer | | Cross-artifact set | review-cross-artifact | New SB reviewer -- multi-artifact | ## Orchestration Steps 1. Resolve artifact path to absolute path 2. Load per-artifact review state (enables session resumption) 3. Auto-detect or validate revie