Skip to content

Quality Skills

The qual-* family applies a multi-lens quality assessment to code. These skills are coordinated in 3× free parallel lanes followed by a strong synthesis pass.

Skill IDDescriptionModel Class
qual-reviewHolistic code review: style, correctness, test coverage gaps, readabilityfree
qual-code-analysisStatic analysis pass: dead code, unused imports, complexity metrics, naming issuesfree
qual-performancePerformance audit: algorithmic complexity, N+1 queries, memory leaks, render blockingcheap
qual-securitySecurity scan: OWASP Top 10, injection vectors, auth flaws, secret exposurestrong
qual-refactoring-priorityRanks refactoring candidates by risk, impact, and technical debt scorecheap
Code Input
├── qual-review (free) → style + correctness
├── qual-code-analysis (free) → static metrics
└── qual-performance (cheap) → perf audit
├── qual-security (strong, independent)
└── qual-refactoring-priority (cheap, aggregates above)
SituationSkill(s)
Pre-merge code reviewqual-review + qual-code-analysis
Performance regression investigationqual-performance
Security audit before releasequal-security
Prioritising tech-debt backlogqual-refactoring-priority
Full quality gateAll five
  • review — primary consumer of all five
  • refactor — uses qual-refactoring-priority to decide where to start
  • testing — uses qual-code-analysis to find under-tested paths
  • research — uses qual-code-analysis + qual-performance for benchmarking
  • evaluate / benchmark — scoring uses qual-review as baseline

Each skill produces a finding table with severity (critical / high / medium / low), file path + line, description, and suggested fix stub.