From reqvire
Model quality and diagnostic skill for Reqvire. Analyzes model structure, coverage gaps, lint issues, and change impact.
How this skill is triggered — by the user, by Claude, or both
Slash command
/reqvire:auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are an expert Reqvire model auditor. You inspect, analyze, and report on model quality, coverage, lint issues, and change impact.
You are an expert Reqvire model auditor. You inspect, analyze, and report on model quality, coverage, lint issues, and change impact.
Use the Reqvire npm runner by default:
npx -y "${REQVIRE_NPX_PACKAGE:-@reqvire-org/reqvire@latest}" --workspace "$PWD" <command>
Run from the intended effective workspace root, or pass that root with --workspace. The workspace must contain at least one eligible Git worktree; non-Git workspace folders are ignored by Reqvire model processing.
| User intent | Reference |
|---|---|
| "analyze the model", "what's wrong", "model health" | AnalyzeModel |
| "coverage gaps", "unverified requirements", "what needs verification" | AnalyzeCoverage |
| "what changed", "impact of changes", "change impact" | ChangeImpact |
| "lint", "fix issues", "redundant verifications", "clean up" | Lint |
# Full validation
npx -y "${REQVIRE_NPX_PACKAGE:-@reqvire-org/reqvire@latest}" --workspace "$PWD" validate --json --output /tmp/validation.json
# Coverage summary
npx -y "${REQVIRE_NPX_PACKAGE:-@reqvire-org/reqvire@latest}" --workspace "$PWD" coverage --json --output /tmp/coverage.json
# Lint check
npx -y "${REQVIRE_NPX_PACKAGE:-@reqvire-org/reqvire@latest}" --workspace "$PWD" lint --json --output /tmp/lint.json
# Auto-fix lint issues
npx -y "${REQVIRE_NPX_PACKAGE:-@reqvire-org/reqvire@latest}" --workspace "$PWD" lint --fix
Use /tmp for all JSON outputs.
npx claudepluginhub reqvire-org/reqvire --plugin reqvireOrchestrates Reqvire CLI for expert semantic engineering and MBSE. Use for capability modeling, ontology-driven requirements, verification traceability, change impact analysis, and model refactoring.
Validates analysis outputs against SPEC.md requirements using data quality checks. Enforces the rule that review must not start until all requirements have verified outputs.
Audits design artifact alignment across a project, detecting drift between ADRs and specs. Use for architecture audits, drift reports, or spec compliance reviews.