| name | code-dedup |
| description | Searches for duplicate code, duplicate tests, and dead code, then safely merges or removes them. Use when the user says "deduplicate", "find duplicates", "remove dead code", "DRY up", or "code dedup". Requires test coverage — refuses to touch untested code. |
Code Dedup
Carefully search for duplicate code, duplicate tests, and dead code across the repo. Merge duplicates and delete dead code — but only when test coverage proves the change is safe.
Prerequisites — hard gate
Before touching ANY code, verify these conditions. If any fail, stop and report why.
- Run
make test — all tests must pass. If tests fail, stop. Do not dedup a broken codebase.
- Run
make test — tests are fail-fast AND enforce the coverage threshold from coverage-thresholds.json. If anything fails, stop and fix it before deduping.
- Verify the project uses static typing. This is a Rust project — Rust is statically typed by default, so proceed.
Steps
Copy this checklist and track progress:
Dedup Progress:
- [ ] Step 1: Prerequisites passed (tests green, coverage met, typed)
- [ ] Step 2: Dead code scan complete
- [ ] Step 3: Duplicate code scan complete
- [ ] Step 4: Duplicate test scan complete
- [ ] Step 5: Changes applied
- [ ] Step 6: Verification passed (tests green, coverage stable)
Step 1 — Inventory test coverage
Before deciding what to touch, understand what is tested.
- Run
make test to confirm green baseline. make test is fail-fast AND enforces the coverage threshold from coverage-thresholds.json. It exits non-zero on any test failure OR coverage shortfall.
- Note the current coverage percentage — this is the floor. It must not drop.
- Identify which files/modules have coverage and which do not. Only files WITH coverage are candidates for dedup.
Step 2 — Scan for dead code
Search for code that is never called, never imported, never referenced.
- Look for unused exports, unused functions, unused structs, unused variables, unused modules
- The Rust compiler already warns on
dead_code, unused_imports, unused_variables — check make lint / cargo clippy output. Cargo.toml has all of these set to deny, so they become errors.
- For each candidate: grep the entire codebase for references (including
tests/, website/, Cargo.toml, configs). Only mark as dead if truly zero references.
- List all dead code found with file paths and line numbers. Do NOT delete yet.
Step 3 — Scan for duplicate code
Search for code blocks that do the same thing in multiple places.
- Look for functions/methods with identical or near-identical logic
- Look for copy-pasted blocks (same structure, maybe different variable names)
- Look for multiple implementations of the same algorithm or pattern (e.g., repeated mutation operator helpers in
src/mutation/, repeated parser walks in src/parser/)
- Check across module boundaries — duplicates often hide between
src/parser/, src/mutation/, src/runner/, and src/report/
- For each duplicate pair: note both locations, what they do, and how they differ (if at all)
- List all duplicates found. Do NOT merge yet.
Step 4 — Scan for duplicate tests
Search for integration tests that verify the same behavior.
- Look for test functions in
tests/integration_*.rs with identical assertions against the same code paths
- Look for test fixtures/helpers that are duplicated across
tests/integration_*.rs files — these should live in a shared tests/common/mod.rs
- Remember: per
CLAUDE.md this project only uses coarse integration tests. No unit tests. So all scanning happens inside tests/.
- List all duplicate tests found. Do NOT delete yet.
Step 5 — Apply changes (one at a time)
For each change, follow this cycle: change → test → verify coverage → continue or revert.
5a. Remove dead code
- Delete dead code identified in Step 2
- After each deletion: run
make test (fail-fast + coverage + threshold all in one)
- If
make test exits non-zero (test failure OR coverage drop): revert immediately and investigate
- Dead code removal should never break tests or drop coverage
5b. Merge duplicate code
- For each duplicate pair: extract the shared logic into a single function/module
- Update all call sites to use the shared version
- After each merge: run
make test
- If tests fail: revert immediately. The duplicates may have subtle differences you missed.
- If coverage drops: the shared code must have equivalent test coverage. Add tests if needed before proceeding.
5c. Remove duplicate tests
- Delete the redundant test (keep the more thorough one)
- After each deletion: run
make test
- If coverage drops below threshold,
make test exits non-zero — revert immediately. The "duplicate" test was covering something the other wasn't.
Step 6 — Final verification
- Run
make lint — all linters and the format check must pass
- Run
make test — tests must pass AND coverage must remain >= the baseline from Step 1
- Report: what was removed, what was merged, final coverage vs baseline
(Only the 7 standard targets exist — make lint and make test cover formatting and coverage checks respectively.)
Rules
- No test coverage = do not touch. If a file has no tests covering it, leave it alone entirely. You cannot safely dedup what you cannot verify.
- Coverage must not drop. If removing or merging code causes coverage to decrease, revert and investigate. The coverage floor from Step 1 is sacred.
- One change at a time. Make one dedup change, run tests, verify coverage. Never batch multiple dedup changes before testing.
- When in doubt, leave it. If two code blocks look similar but you're not 100% sure they're functionally identical, leave both. False dedup is worse than duplication.
- Preserve public API surface. Do not change public function signatures, struct names, or module exports that may be consumed externally (dart_mutant is a CLI, but its
src/mutation and src/parser modules are reusable building blocks).
- Three similar lines is fine. Do not create abstractions for trivial duplication. The cure must not be worse than the disease. Only dedup when the shared logic is substantial (>10 lines) or when there are 3+ copies.