Run mutmut to measure test effectiveness by mutating code
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill mutation-testing --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Mutation Testing?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-mutation-testing)More formats (shields.io, HTML) on the badges page.
---
name: mutation-testing
description: "Run mutmut to measure test effectiveness by mutating code"
---
# Mutation Testing
## Install
```bash
pip install mutmut
```
## Run
```bash
mutmut run --paths-to-mutate src/
mutmut results
```
## Interpreting Results
- Killed: test caught the mutation (good)
- Survived: test missed it (bad)
- Timeout: mutation caused infinite loop
## Aim For
- >80% mutation score
- Focus on survived mutants first
- Add tests for untested branches
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!