deslop — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited deslop (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Remove low-value noise from code: comments that narrate what the code already says, unused variables and imports, and try/catch blocks that add no recovery logic. Makes the codebase easier to read and maintain.
#### A. Narrating comments Comments that restate what the code does with no additional insight:
# Bad — obvious from the code
i = i + 1 # Increment i
# Bad — restates the function name
def get_user(id):
# Get the user by ID
return db.query(User, id)Keep comments that explain why (non-obvious intent, trade-offs, constraints, workarounds).
#### B. Dead variables and imports
#### C. Defensive try/catches with no recovery
# Slop — try/except that only re-raises or swallows silently
try:
x = int(value)
except:
pass # no recovery, no logging
# Also slop — wraps a trivially safe operation
try:
name = obj.name
except AttributeError:
name = None # could just use: name = getattr(obj, 'name', None)Keep try/catches that: log the error, transform the exception type, implement real recovery, or wrap genuinely unsafe I/O.
#### D. Commented-out code blocks
Deslopped: <filename>
Removed:
- <count> narrating comments
- <count> unused imports: <list>
- <count> dead variables: <list>
- <count> empty/pointless try/catches
Left in place (flagged for review):
- <item> — reasonCleaned file(s) + a brief removal summary. No behaviour changes — only noise removal.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.