| name | score |
| description | Compute and display the dependency health score |
| argument-hint | ["coverage-dir"] |
| allowed-tools | Bash, Read |
Compute the dependency health score for the project.
cargo run -p scalpel-cli -- score --coverage-dir ${ARGUMENTS:-.scalpel/coverage}
Interpret the score:
- A (90-100): Excellent — minimal waste, few unused dependencies
- B (80-89): Good — some cleanup opportunities
- C (70-79): Fair — significant unused code
- D (60-69): Poor — majority of dependencies have high waste
- F (0-59): Critical — massive unused dependency surface, security risk
If score is below 70, suggest running scalpel prune --mode audit for detailed recommendations.