From scaffolding
Scores ResearchPacks (≥80) and Implementation Plans (≥85) against quality gates to gate research and plans before implementation. Useful for quality control in structured workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/scaffolding:quality-validationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Systematic validation ensuring ResearchPacks and Implementation Plans meet quality standards before implementation.
Systematic validation ensuring ResearchPacks and Implementation Plans meet quality standards before implementation.
npm run validate, pytest, make check, cargo test)Run your project's own validate/lint/type-check/test command at the completion gate. The exact command depends on your stack — substitute the equivalents below.
| Step | Generic intent | Example (Node/TS) | Example (Python) |
|---|---|---|---|
| Type check | Static type safety | npm run type-check | mypy . |
| Lint | Style / static analysis | npm run lint | ruff check . |
| Build | Compile / package | npm run build | python -m build |
| Tests | Behavioral verification | npm test | pytest |
| Full gate | One command runs all | npm run validate | make check |
# Example (Node/TypeScript): full validation
npm run validate
# Example (Python): full validation
pytest && ruff check . && mypy .
| Failure | Description |
|---|---|
| Hallucinated APIs | APIs not in official docs |
| Version mismatch | Wrong version in research |
| Missing citations | No source URLs |
| No rollback plan | Missing reversion procedure |
| Ambiguous steps | Non-actionable instructions |
| API misalignment | Plan uses undocumented APIs |
## Validation Report
**Artifact**: [ResearchPack|ImplementationPlan]
**Score**: XX/100
**Result**: [PASS|FAIL]
### Scoring Breakdown
- Completeness: XX/40
- Accuracy: XX/30
- Citation: XX/20
- Actionability: XX/10
### Defects Found
1. [Defect description]
2. [Defect description]
### Recommendations
- [Fix suggestion]
npx claudepluginhub komluk/scaffolding --plugin scaffoldingAudits Claude Code packages across 6 quality dimensions (frontmatter, structure, content, triggers, handlers, testing) with scored reports. Supports single-package quick audits and full-repository comparative rankings.
Performs multi-AI validation, scoring, and review of code or documents using external AI providers. Part of the Double Diamond Deliver phase.
Performs comprehensive quality audits verifying planning conformance, DDD validation, security checks, tests, browser verification, and metrics before deployment or PR merge.