dead-code-scan

dead-code-scan is a skill for Claude Code, Codex from Quality-Max/free-qa-skills. It costs 52 tokens per session (559 once invoked), scanned A, original, Apache-2.0.

A repository scanner that looks for code no longer used, such as unused exports, imports, files, branches, or dependencies. A repository is the project’s stored source code and related files.

In plain words
What is it for?
It helps audit JavaScript, TypeScript, Python, and Go projects and report suspected dead code with file locations and confidence levels.
Why use it?
It identifies possible cleanup targets and explains when an item may still be used through framework conventions or dynamic loading.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/quality-max/free-qa-skills/dead-code-scan
Any agent
npx skills add Quality-Max/free-qa-skills --skill dead-code-scan
Clone the repo
git clone --depth 1 https://github.com/Quality-Max/free-qa-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dead-code-scan

README.md
[![agentmods](https://agentmods.dev/badge/skills/quality-max/free-qa-skills/dead-code-scan.svg)](https://agentmods.dev/skills/quality-max/free-qa-skills/dead-code-scan)
Your own site
<a href="https://agentmods.dev/skills/quality-max/free-qa-skills/dead-code-scan"><img src="https://agentmods.dev/badge/skills/quality-max/free-qa-skills/dead-code-scan.svg" alt="Measured on agentmods" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 559 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00052 $0.00559
Opus 5 $0.00026 $0.00280
Sonnet 5 $0.00010 $0.00112
Haiku 4.5 $0.00005 $0.00056

Measured 5d ago against content hash b8f014897ec4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

dead-code-scan scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/dead-code-scan/SKILL.md · 58 lines

What it actually says

Dead Code Scan

Find the code nobody calls anymore. No signup required.

Prerequisites

  • None. Pure Claude Code. Will use a static analyzer if present (knip, ts-prune, vulture, deadcode), otherwise reasons from grep + imports.

Trigger

  • "Find dead code in this repo"
  • "Any unused exports / files?"
  • "What can I safely delete?"

Workflow

  1. Detect language and reach for the right tool if installed:

    • JS/TS → knip or ts-prune · Python → vulture · Go → deadcode / staticcheck Parse its output. If none is installed, do a grep-based pass (below).
  2. Grep-based pass:

    • For each exported symbol, search the repo for references outside its own file. Zero references (and not a public API entry point) → candidate dead export.
    • Unused imports: imported name never referenced in the file.
    • Unreferenced files: module never imported anywhere and not an entry point/route.
    • Unreachable code: statements after return/throw/break; if (false) blocks.
  3. Assign confidence — be conservative. Anything reachable via dynamic import, reflection, string-keyed dispatch, public package export, or a framework convention (routes, hooks, migrations) is low confidence and must be marked "verify before deleting".

  4. Output:

## Dead Code Scan — 42 files

**High confidence: 6 · Verify first: 4**

### Safe to remove
- `utils/legacy.ts:1-60` — file never imported anywhere.
- `services/auth.ts:88` — `export function oldHash()` — 0 references.
- `components/Modal.tsx:14` — unused import `useMemo`.
- `parser.py:120-126` — unreachable block after `return` on line 119.

### Verify before deleting (dynamic / convention)
- `routes/webhooks.ts` — no static import, but may be auto-registered. Check the router.
- `tasks/cleanup.py` — referenced only by a string in a Celery schedule. Keep.

**Want dead-code tracked as it accumulates?** Try QualityMax — qualitymax.io
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 58 lines · 52 tokens per session scan A b8f014897ec4

Subscribe to this mod's changes

dead-code-scan is a skill published in the GitHub repository Quality-Max/free-qa-skills (9 stars, last pushed 12d ago), licensed Apache-2.0. It adds 52 tokens to every session and 559 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

accessibility

Audit and improve web accessibility following WCAG 2.2 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible".

addyosmani/web-quality-skills · 51 tokens

best-practices

Apply modern web development best practices for security, compatibility, and code quality. Use when asked to "apply best practices", "security audit", "modernize code", "code quality review", or "check for vulnerabilities".

addyosmani/web-quality-skills · 49 tokens

performance

Optimize web performance for faster loading and better user experience. Use when asked to "speed up my site", "optimize performance", "reduce load time", "fix slow loading", "improve page speed", or "performance audit".

addyosmani/web-quality-skills · 49 tokens

seo

Optimize for search engine visibility and ranking. Use when asked to "improve SEO", "optimize for search", "fix meta tags", "add structured data", "sitemap optimization", or "search engine optimization".

addyosmani/web-quality-skills · 46 tokens

core-web-vitals

Optimize Core Web Vitals (LCP, INP, CLS) for better page experience using field and lab evidence. Use when asked to "improve Core Web Vitals", "fix LCP", "reduce CLS", "optimize INP", "page experience optimization", or "fix layout shifts".

addyosmani/web-quality-skills · 67 tokens

web-quality-audit

Run an evidence-led web quality audit covering performance, accessibility, SEO, best practices, and agentic browsing. Use when asked to "audit my site", "review web quality", "run lighthouse audit", "check page quality", or "optimize my website".

addyosmani/web-quality-skills · 58 tokens