refactor-clean

A code-cleanup command that looks for unused imports, exports, functions, files, and package dependencies in TypeScript and Rust projects. It checks whether proposed removals still leave the project compiling.

In plain words
What is it for?
Use it to find and remove dead code, unused imports, unused exports, and unused JavaScript or Rust dependencies while verifying the result.
Why use it?
It helps reduce maintenance clutter and avoids deleting code that is still needed by checking references and running type or build checks.

Command for Claude Code

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 commands/talayash/agentrium/refactor-clean
Clone the repo
git clone --depth 1 https://github.com/talayash/agentrium

Made for: Claude Code.

Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 448 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 $0.00000 $0.00448
Opus 5 $0.00000 $0.00224
Sonnet 5 $0.00000 $0.00090
Haiku 4.5 $0.00000 $0.00045

Measured 2d ago against content hash 6c1fa64e3fb4, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

refactor-clean 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 2d 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.

.claude/commands/refactor-clean.md · 48 lines

What it actually says

Refactor Clean

Find and safely remove dead code, unused imports, and unused dependencies.

Instructions

Systematically find and remove dead code from the project. $ARGUMENTS

Phase 1: Unused Imports (TypeScript)

  1. Run npx tsc --noEmit 2>&1 and look for unused import warnings
  2. Search for imports that are never referenced in their file
  3. Remove unused imports one file at a time
  4. Verify npx tsc --noEmit still passes after each removal

Phase 2: Unused Exports (TypeScript)

  1. For each exported function/type/const in src/, search if it's imported anywhere
  2. If an export has zero importers and is not an entry point, flag it
  3. Remove confirmed dead exports
  4. Verify build still passes

Phase 3: Dead Code (Rust)

  1. Run cargo check 2>&1 in src-tauri/ and look for dead_code warnings
  2. Run cargo clippy 2>&1 for additional unused code detection
  3. Remove unused functions, structs, and imports
  4. Verify cargo check still passes after each removal

Phase 4: Unused Dependencies

  1. Check package.json - search for each dependency's usage in src/
  2. Check Cargo.toml - search for each dependency's usage in src-tauri/src/
  3. Flag dependencies with zero references (excluding build/config deps)
  4. Present list to user for confirmation before removing

Rules

  • One removal at a time - verify build passes after each
  • Never remove code you're not sure is dead - if in doubt, flag it but don't remove
  • Don't touch test code unless explicitly asked
  • Create a checkpoint first if there are uncommitted changes

Report

## Cleanup Report
- Unused imports removed: N
- Dead exports removed: N
- Dead Rust code removed: N
- Unused dependencies flagged: N
- Build status: ✅ PASS
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. 2d ago First seen · 48 lines · 0 tokens per session scan A 6c1fa64e3fb4

Subscribe to this mod's changes

refactor-clean is a command published in the GitHub repository talayash/agentrium (39 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 448 tokens. 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-30.