review-cross-artifactlisted
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".