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.
npx skills add rtazima/claude-proj-blueprint --skill slop-cleanergit clone --depth 1 https://github.com/rtazima/claude-proj-blueprintWrote 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/skills/rtazima/claude-proj-blueprint/slop-cleaner)<a href="https://agentmods.dev/skills/rtazima/claude-proj-blueprint/slop-cleaner"><img src="https://agentmods.dev/badge/skills/rtazima/claude-proj-blueprint/slop-cleaner/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/rtazima/claude-proj-blueprint/slop-cleaner"><img src="https://agentmods.dev/badge/skills/rtazima/claude-proj-blueprint/slop-cleaner.svg" alt="Reviewed on agentmods" width="80" 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.00065 | $0.01499 |
| Opus 5 | $0.00032 | $0.00749 |
| Sonnet 5 | $0.00013 | $0.00300 |
| Haiku 4.5 | $0.00006 | $0.00150 |
Grade A, and why
slop-cleaner 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 140 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI Slop Cleaner
Remove patterns that LLMs typically introduce: unnecessary comments, over-abstraction, verbose code, dead code, and "AI verbal tics." The writer and the reviewer MUST be different passes — never self-approve a cleanup.
Rules
- Scope first: identify which files to clean (args, or
git diff --name-only HEAD~3) - Read before editing: always read the full file before making changes
- One category at a time: go through the checklist in order, not all at once
- Preserve behavior: cleaning must NOT change functionality — only remove noise
- Run tests after: if tests exist, run them after cleanup to confirm nothing broke
- Report: list every change made with before/after snippets
Slop Patterns Checklist
1. Unnecessary comments
- Comment restates the function/variable name:
// Get the userabovegetUser() - Section headers in small files:
// --- Imports ---,// Constructor - Obvious explanations:
// Increment counterabovecounter++ - JSDoc/docstrings that only restate the signature with no added insight
-
// TODOwithout context or assignee (either add context or remove)
2. Over-abstraction
- Single-use interfaces/types that could be inline
- Wrapper functions that only call one thing with no added logic
- Abstract factory / Strategy / Builder for something with one implementation
- Config objects for values that will never change
- Event emitters with a single listener
3. Redundant type assertions
-
as Typewhere the type is already inferred by the compiler -
!non-null assertions where the value is guaranteed non-null - Explicit return types that match the inferred type and add no clarity
-
String(x)orNumber(x)where x is already that type
4. Excessive logging
-
console.log/logger.debugon every function entry/exit - Logging the same data that is already in the request/response
- Logging inside tight loops (performance hazard)
- Debug logs left from development (not guarded by env/level)
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.
- 10d ago First seen · 140 lines · 65 tokens per session scan A cbd3d5213be0
slop-cleaner is a skill published in the GitHub repository rtazima/claude-proj-blueprint (20 stars, last pushed 3mo ago), licensed MIT. It adds 65 tokens to every session and 1,499 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-30.
Other skills, from other repositories
truecourse-analyze
Run TrueCourse architecture analysis on this repository.
mandu-guard-guide
A guide for Mandu Guard, a system that enforces allowed software layers and imports. It also explains six architecture presets, such as Feature-Sliced Design and Clean Architecture.
mandu-guard
Architecture guard system for Mandu. Use when checking layer dependencies, enforcing architecture rules, or validating file locations. Triggers on tasks involving architecture, layers, dependencies, or guard commands.
architecture-governance
Keep code changes conformant to a repo's real, declared architecture using ArchSteer. Use when starting work in an unfamiliar repo, before finishing/committing an architecturally significant change (new dependency, new data access, new external call, new layer), or when asked about a codebase's architecture, layers…
audit
This skill should be used when the user asks to "audit spec coverage", "find uncovered modules", "scan for missing specs", "check wyx coverage", "get spec TODO list", "wyx audit", "wyx", or wants a prioritized list of wyx skill commands for uncovered modules. Scans for coverage gaps, pipeline/sync candidates, and…
go-testing
Trigger: Go tests, go test coverage, Bubbletea teatest, golden files. Apply focused Go testing patterns.