Skip to main content

The cache cleaner for the AI Coding era. Clean up Claude Code, Cursor, npm, pip, cargo caches and more.

Project description

cc-cleaner

PyPI version Python 3.10+ License: MIT

The cache cleaner for the AI Coding era.

cc = Claude Code / Cursor / Copilot / Coding Cache

The Problem

In the AI Coding era, tools like Claude Code, Cursor, and GitHub Copilot have revolutionized how we write code. But there's a hidden cost:

  • Rapid project iteration - AI helps you scaffold projects in seconds, leaving behind node_modules, venv, build artifacts
  • Massive conversation logs - Claude Code stores every conversation as .jsonl files (can grow to GB!)
  • Cache explosion - Package managers (npm, pip, cargo) cache everything you've ever installed
  • Debug & telemetry data - AI tools generate tons of logs and telemetry

Result: Your disk fills up 10x faster than before.

The Solution

cc-cleaner is built specifically for AI-assisted developers. It knows exactly what to clean:

# Install
pipx install cc-cleaner

# See what's eating your disk
cc-cleaner status

# Clean safely
cc-cleaner clean

Quick Start

# Show all cleanable caches with sizes
cc-cleaner status

# Clean all safe targets (dry run first)
cc-cleaner clean --dry-run

# Actually clean
cc-cleaner clean

# Clean specific tool
cc-cleaner clean claude
cc-cleaner clean npm

What It Cleans

AI Coding Tools

Tool What's Cleaned Risk
Claude Code Debug logs, telemetry, conversation transcripts (.jsonl) Safe/Moderate

Package Managers

Tool What's Cleaned Risk
npm ~/.npm/_cacache, ~/.npm/_logs Safe
yarn Yarn cache, Berry cache Safe
pnpm Store, metadata cache Moderate
pip ~/.cache/pip Safe
uv ~/.cache/uv Safe
cargo Registry cache, git deps Safe
go Module cache, build cache Safe

Build Tools & IDEs

Tool What's Cleaned Risk
Gradle Caches, daemon, wrapper dists Moderate
CocoaPods Specs repos, download cache Moderate
Homebrew Download cache, logs Safe
Docker Build cache, dangling images, system prune Safe/Dangerous

Commands

cc-cleaner status [CLEANER]

Show disk usage. See how much space you can reclaim.

cc-cleaner status          # All cleaners
cc-cleaner status claude   # Only Claude Code
cc-cleaner status --json   # JSON output for scripts

cc-cleaner clean [CLEANER]

Clean caches. Safe by default.

cc-cleaner clean                    # Clean all safe targets
cc-cleaner clean npm                # Clean only npm
cc-cleaner clean --dry-run          # Preview only
cc-cleaner clean --include-moderate # Include moderate-risk targets
cc-cleaner clean --force            # Include dangerous targets
cc-cleaner clean -y                 # Skip confirmation

cc-cleaner list

List all available cleaners.

Risk Levels

Level Description Cleaned By Default
Safe Quick to rebuild, no impact Yes
Moderate May take time to rebuild With --include-moderate
Dangerous Potential data loss With --force

What's Safe?

  • npm/pip/cargo download caches (re-download on demand)
  • Build caches (rebuild automatically)
  • Log files (you probably don't need them)
  • Claude Code telemetry/debug logs

What's Moderate?

  • Claude Code conversation transcripts (your chat history!)
  • pnpm store (shared across projects)
  • Gradle dependencies (slow to re-download)

What's Dangerous?

  • Docker system prune (removes all unused images/containers)

Installation

pipx (Recommended)

pipx install cc-cleaner

uv

uv tool install cc-cleaner

pip

pip install cc-cleaner

Real World Usage

Weekly Cleanup Routine

# Check what's taking space
cc-cleaner status

# Clean safe stuff (no confirmation needed)
cc-cleaner clean -y

# Review and clean moderate stuff
cc-cleaner clean --include-moderate

After Heavy AI Coding Session

# Claude Code transcripts can grow huge
cc-cleaner status claude

# Clean old conversations (keep your sanity and disk space)
cc-cleaner clean claude --include-moderate

Before Running Low on Disk

# Nuclear option - clean everything safe + moderate
cc-cleaner clean --include-moderate -y

# Check Docker specifically
cc-cleaner status docker
cc-cleaner clean docker --force  # If you really need space

Contributing

Adding a new cleaner is easy:

from cc_cleaner.core import (
    BaseCleaner, CleanMethod, CleanTarget, RiskLevel,
    expand_path, get_dir_size, register_cleaner,
)

@register_cleaner
class MyCleaner(BaseCleaner):
    name = "my-tool"
    description = "My AI coding tool caches"
    risk_level = RiskLevel.SAFE

    def get_targets(self) -> list[CleanTarget]:
        cache = expand_path("~/.my-tool/cache")
        return [
            CleanTarget(
                name="my-tool/cache",
                path=cache,
                description="My tool cache",
                risk_level=RiskLevel.SAFE,
                clean_method=CleanMethod.DELETE_DIR,
                size_bytes=get_dir_size(cache) if cache.exists() else 0,
                exists=cache.exists(),
            )
        ]

PRs welcome for:

  • Cursor cache locations
  • GitHub Copilot cache locations
  • Windsurf / other AI coding tools
  • Any tool that AI coders frequently use

License

MIT


Built for the AI Coding era. Stop running out of disk space.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cc_cleaner-0.1.1.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cc_cleaner-0.1.1-py3-none-any.whl (23.7 kB view details)

Uploaded Python 3

File details

Details for the file cc_cleaner-0.1.1.tar.gz.

File metadata

  • Download URL: cc_cleaner-0.1.1.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for cc_cleaner-0.1.1.tar.gz
Algorithm Hash digest
SHA256 3a59f9d7324489e51cd9a73f92fdaa9f4add156472ca7c9310d8804f31bba36e
MD5 f47db0a33f927cc8a94236448ea97c78
BLAKE2b-256 5f7284706f39be214d47d4e1a94cc9ebbbb64c784efdba867afe5babd442eaa6

See more details on using hashes here.

File details

Details for the file cc_cleaner-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: cc_cleaner-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 23.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for cc_cleaner-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f10c7868ef4e49bf73e42fa0791131ce1ecda54fa22f16b4f94242671d618a50
MD5 704be9fb239bd3280d92fd4708903d14
BLAKE2b-256 b57fbcbe5cdb9e92995ef978146b8eba86a598cecc2cc9e3e4b5edd2701a275e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page