← ClaudeAtlas

review-cross-artifactlisted

This skill should be used for cross-artifact consistency reviewer -- validates alignment across SPEC.md, REQUIREMENTS.md, ROADMAP.md, and DESIGN.md. Detects unmapped ACs, orphaned requirements, missing design coverage, and phantom phase requirements.
alo-exp/silver-bullet · ★ 5 · AI & Automation · score 76
Install: claude install-skill alo-exp/silver-bullet
# review-cross-artifact Cross-artifact consistency reviewer skill. Implements the artifact-reviewer framework interface to validate alignment across multiple planning artifacts: SPEC.md, REQUIREMENTS.md, ROADMAP.md, and optionally DESIGN.md. 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 --reviewer review-cross-artifact --artifacts <spec-path> <requirements-path> <roadmap-path> [design-path] ``` Or invoke directly: ``` /review-cross-artifact --artifacts <spec-path> <requirements-path> <roadmap-path> [design-path] ``` ## Input This reviewer accepts MULTIPLE artifact paths. Use `artifact_path` as a sentinel (e.g., `.planning/SPEC.md`) and pass ALL artifact paths via `source_inputs`. The reviewer auto-detects which artifact is which by filename pattern matching. | Field | Type | Required | Description | |-------|------|----------|-------------| | artifact_path | string | YES | Sentinel value — set to the SPEC.md path (primary source of truth) | | source_inputs | string[] | YES | All artifact paths to check consistency across. Accepts: SPEC.md, REQUIREMENTS.md, ROADMAP.md, DESIGN.md | | check_mode | "full" / "structural" | YES | Defaults to "full".