| name | verify-quality-a |
| type | action |
| description | Quality verification framework — dimensions, severity levels, grading criteria |
| user-invocable | false |
Action skill — Quality verification procedures: dimensions, severity grading, production readiness checks.
Quality Standards
Verification Dimensions
Design quality — Are abstractions earning their complexity? Dependencies pointing right? Module boundaries in the right places? Hidden coupling?
Code integrity — Is the code genuine or performative? Do tests verify real behavior? Does error handling actually handle errors?
Code cleanliness — Unnecessary defensive code? Over-engineered abstractions? Clear naming? Dead code?
Production readiness — Tests pass? No hardcoded secrets? Errors handled? Dependencies pinned?
Finding Severity
Critical (must fix) — Crashes, data loss, security vulnerabilities. Fake code that will fail in production. Missing error handling for common failure modes.
Warning (should fix) — Design issues that will cause problems at scale. Inconsistencies that will confuse future sessions. Tests that don't verify real behavior.
Suggestion (consider) — Readability improvements. Minor naming inconsistencies. Simplification opportunities.
Grading