assessment-scoringlisted
Install: claude install-skill ClaudeRegistry/marketplace
# Assessment Scoring Methodology
## Purpose
Provide a standardized, weighted scoring system for evaluating codebases across five dimensions: Code Quality, Performance, Security, Maintainability, and Testing.
## Scoring Categories
| Category | Weight | Focus Areas |
|----------|--------|-------------|
| Code Quality | 25% | Structure, complexity, standards, error handling |
| Performance | 25% | Algorithms, rendering, async, caching |
| Security | 20% | Vulnerabilities, auth, data protection, dependencies |
| Maintainability | 20% | Organization, documentation, coupling, tech debt |
| Testing | 10% | Coverage, quality, distribution, critical paths |
## Scoring Process
1. Each category receives a raw score from 0 to 10
2. Apply positive factors (good practices found) and negative factors (issues found)
3. Multiply each raw score by its weight percentage
4. Sum weighted scores for final composite score (0-10)
## Score Calculation Template
| Category | Score | Weight | Calculation | Weighted Score |
|----------|-------|--------|-------------|----------------|
| Code Quality | X/10 | 25% | X × 0.25 | X.XX |
| Performance | X/10 | 25% | X × 0.25 | X.XX |
| Security | X/10 | 20% | X × 0.20 | X.XX |
| Maintainability | X/10 | 20% | X × 0.20 | X.XX |
| Testing | X/10 | 10% | X × 0.10 | X.XX |
| **Total** | | 100% | | **X.XX/10** |
## Score Interpretation
| Range | Rating | Description |
|-------|--------|-------------|
| 0–2 | Critical | Immediate intervention required |
| 2