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.
curl -O https://raw.githubusercontent.com/enuno/unifi-mcp-server/main/.claude/commands/clean.mdgit clone --depth 1 https://github.com/enuno/unifi-mcp-serverWrote 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.
[](https://agentmods.dev/commands/enuno/unifi-mcp-server/clean)<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>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.
| Model | Per session | Once 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 |
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` What it actually says
Clean all build artifacts, cache files, and temporary files from the project.
Execute the following cleanup commands:
- Remove Python cache:
find . -type d -name "__pycache__" -exec rm -rf {} + 2>/dev/null || true - Remove .pyc files:
find . -type f -name "*.pyc" -delete - Remove pytest cache:
rm -rf .pytest_cache - Remove coverage data:
rm -rf htmlcov .coverage coverage.xml - Remove build artifacts:
rm -rf dist build *.egg-info - Remove mypy cache:
rm -rf .mypy_cache - Remove ruff cache:
rm -rf .ruff_cache
Report back with:
- List of directories/files removed
- Disk space freed
- Confirmation that working directory is clean
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.
- 6d ago First seen · 28 lines · 6 tokens per session scan C 20152bea1377
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.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
constitution
Create or update the project constitution from interactive or provided principle inputs.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.