Agent skill
ce-deadcode-hunter
Identify unreachable or non-contributing source code and separate true dead code from merely untested reachable paths, with Test Quality Method Option A/B/C routing.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/ce-deadcode-hunter
SKILL.md
CE Dead-Code Hunter
This skill implements the Dead-Code Hunter role from ADR-030 and mirrors
the prompt in docs/improvement/test-quality-method/deadcode_hunter.md.
Required references
docs/improvement/test-quality-method/README.md(canonical method + options)docs/improvement/test-quality-method/deadcode_hunter.md(full role prompt)
Use this skill when
- Proposing source removals.
- Investigating code only exercised by tests.
- Reducing maintenance surface without behavioral regressions.
Focus option handling
- Option A (Test-Focused): limit analysis to source paths implicated by pruning and overlap findings.
- Option B (Code-Focused): run the full dead-code reachability audit.
- Option C (Full Cycle): run full audit and reconcile with Option A test proposals before classifying removals.
Core missions
- Identify truly unreachable code paths.
- Distinguish dead code from untested but reachable code.
- Produce evidence-backed removal candidates with risk labels.
Workflow
- Confirm the selected focus option (
A,B, orC). - Start with structural evidence:
python scripts/anti-pattern-analysis/analyze_private_methods.py
- Cross-check coverage artifacts:
reports/over_testing/gaps.csvreports/over_testing/line_coverage_counts.csv
- Validate dynamic reachability:
- lazy imports in
src/calibrated_explanations/__init__.py - plugin registration/entry points
- environment-specific branches
- Classify each candidate:
Dead: unreachable from any supported runtime path.Untested: reachable but not covered.Needs investigation: dynamic/conditional path not yet proven.
Output contract
For each candidate provide:
- location (
file:line) - reachability evidence
- category (
Dead,Untested,Needs investigation) - recommended action (remove, keep + test, or defer)
- selected focus option (
A,B, orC) and why this candidate is in-scope
Constraints
- Analysis-first skill; no bulk deletions without explicit approval.
- Prefer conservative classification when dynamic reachability is uncertain.
- Coordinate with
ce-test-pruning-expertwhen tests are the only callers.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?