unifi-mcp-server: Command for Claude Code

.claude/commands/clean.md

clean is a command for Claude Code from enuno/unifi-mcp-server. It costs 6 tokens per session (227 once invoked), scanned C, original, Apache-2.0.

A cleanup command for removing common Python caches, test and coverage files, type-checking and lint caches, and build output from a project.

In plain words
What is it for?
Use it to remove items such as __pycache__, .pyc files, pytest and coverage data, dist and build directories, egg-info folders, and mypy or ruff caches, then report what was removed and the freed disk space.
Why use it?
It clears generated files that can take up space or make a project directory look untidy. It is also useful when you want to start a build or test run with old generated data removed.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is enuno/unifi-mcp-server's own configuration. It tells Claude Code how to work on unifi-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything unifi-mcp-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to enuno/unifi-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/enuno/unifi-mcp-server/main/.claude/commands/clean.md
Clone the repo
git clone --depth 1 https://github.com/enuno/unifi-mcp-server

Made for: Claude Code.

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 clean

README.md
[![agentmods](https://agentmods.dev/badge/commands/enuno/unifi-mcp-server/clean.svg)](https://agentmods.dev/commands/enuno/unifi-mcp-server/clean)
Your own site
<a href="https://agentmods.dev/commands/enuno/unifi-mcp-server/clean"><img src="https://agentmods.dev/badge/commands/enuno/unifi-mcp-server/clean.svg" alt="Measured on agentmods" height="20"></a>
Per session 6 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 227 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. 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.00006 $0.00227
Opus 5 $0.00003 $0.00113
Sonnet 5 $0.00001 $0.00045
Haiku 4.5 $0.00001 $0.00023

Measured 6d ago against content hash 20152bea1377, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade C, and why

clean scanned grade C with 1 finding 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 6d 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

1. Remove Python cache: `find . -type d -name "__pycache__" -exec rm -rf {} + 2>/dev/null || true`
.claude/commands/clean.md · 28 lines

What it actually says

Clean all build artifacts, cache files, and temporary files from the project.

Execute the following cleanup commands:

  1. Remove Python cache: find . -type d -name "__pycache__" -exec rm -rf {} + 2>/dev/null || true
  2. Remove .pyc files: find . -type f -name "*.pyc" -delete
  3. Remove pytest cache: rm -rf .pytest_cache
  4. Remove coverage data: rm -rf htmlcov .coverage coverage.xml
  5. Remove build artifacts: rm -rf dist build *.egg-info
  6. Remove mypy cache: rm -rf .mypy_cache
  7. Remove ruff cache: rm -rf .ruff_cache

Report back with:

  • List of directories/files removed
  • Disk space freed
  • Confirmation that working directory is clean
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. 6d ago First seen · 28 lines · 6 tokens per session scan C 20152bea1377

Subscribe to this mod's changes

clean is a command published in the GitHub repository enuno/unifi-mcp-server (245 stars, last pushed 4d ago), licensed Apache-2.0. It adds 6 tokens to every session and 227 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.