AI Slop Cleaner Task Card
Use this bounded helper for cleanup/refactor/deslop work, not as a competing top-level
workflow. Shared operating invariants live in templates/AGENTS.md; this card defines
scope, smell taxonomy, passes, and evidence.
When to use and inputs
Use when working code is bloated, noisy, repetitive, over-abstracted, or AI-generated;
the user requests cleanup/refactor/deslop; or a follow-up left duplicate/dead code,
weak boundaries, missing tests, fallback-like paths, or wrappers. Inputs are the requested
feature/files and behavior to preserve. A file list scope is valid; keep the pass bounded
to it. In the Ralph workflow, run this skill on Ralph's changed files only, standard mode
unless explicitly requested otherwise.
Before editing
- Lock behavior with regression tests first: identify behavior to preserve, run/add the narrowest targeted tests, and cover both primary and preserved compatibility/fail-safe fallback paths.
- Create a cleanup plan before code: list scope and smells, include fallback findings/classifications/escalation, and order safest/highest-signal fixes first.
- Inventory fallback-like code in scope: quick hacks, temporary workaround, temporary fallback, just bypass, just skip, fallback if it fails, swallowed errors, silent defaults, broad compatibility shims, and duplicate alternate execution paths.
- Classify each fallback: Masking fallback slop hides evidence, bypasses the contract, suppresses validation, swallows failures, silently defaults, or adds untested paths; Grounded compatibility/fail-safe fallback is narrow at an external/version/fail-safe boundary, documents rationale, preserves failure evidence, and tests primary plus fallback.
- Prefer root-cause repair, deletion, boundary repair, or explicit failure behavior. For broad/ambiguous/cross-layer/architectural findings, invoke
$ralplan for consensus resolution; when already inside ralplan, ralph, team, or another OMX workflow, do not spawn a nested $ralplan—attach the finding to the active handoff.
Smell taxonomy and passes
Classify before changing:
- Fallback-like code: masking fallbacks, workaround branches, bypasses, swallowed errors, silent defaults, broad shims, alternate paths.
- Duplication: repeated logic, copy-paste branches, redundant helpers.
- Dead code: unused/unreachable code, stale flags, debug leftovers.
- Needless abstraction: pass-through wrappers, speculative indirection, single-use layers.
- Boundary violations: hidden coupling, leaky responsibilities, wrong-layer imports/side effects.
- Missing tests: behavior not locked or edge cases uncovered.
- UI/design slop: context-sensitive signals, not absolute bans; preserve intentional brand, design-system, accessibility, or product-context exceptions. Challenge Korean body text at 11-12px (generally 14px or larger); gratuitous box shadows; repetitive eyebrow + title + description + paragraph stacks and generic emoji badges; default AI blue/purple such as
#3B82F6; reflexive 3-column or 4-column grids; and extreme gradients unless justified by context.
Resolve the fallback-like code resolution gate first, then one smell at a time:
Pass 1: Dead code deletion; Pass 2: Duplicate removal; Pass 3: Naming/error
handling cleanup; Pass 4: Test reinforcement. Re-run targeted verification after
each pass and avoid unrelated refactors. Prefer deletion/existing utilities; no new
abstractions or dependencies unless explicitly required.
Evidence/output contract
Report:
AI SLOP CLEANUP REPORT
Scope: [files/feature]
Behavior Lock: [targeted tests added/run]
Cleanup Plan: [bounded smells/order]
Fallback Findings: [finding -> masking fallback slop | grounded compatibility/fail-safe fallback -> escalation]
UI/Design Findings: [none/N/A or signal -> action/defer -> intentional rationale]
Passes Completed: [resolution gate; Passes 1-4]
Quality Gates: Regression tests, Lint, Typecheck, Tests, Static/security scan (PASS/FAIL/N/A)
Changed Files: [path -> simplification]
Remaining Risks: [none or deferred item]
Include changed files, simplifications, fallback classifications/escalation status,
tests/diagnostics/build checks run, UI findings when relevant, and deferred risks. Keep
writer/reviewer separation for cleanup plans and approvals.
Exit condition
Stop when the requested scope has behavior-lock evidence, each selected smell pass is
complete or explicitly deferred with rationale, verification is reported, and no
unrelated files or temporary artifacts remain. Never present an unverified cleanup as
complete; escalate a real architectural blocker rather than masking it.
1---2name: ai-slop-cleaner3description: Run an anti-slop cleanup/refactor/deslop workflow4---56# AI Slop Cleaner Task Card78Use this bounded helper for cleanup/refactor/deslop work, not as a competing top-level9workflow. Shared operating invariants live in `templates/AGENTS.md`; this card defines10scope, smell taxonomy, passes, and evidence.1112## When to use and inputs1314Use when working code is bloated, noisy, repetitive, over-abstracted, or AI-generated;15the user requests cleanup/refactor/deslop; or a follow-up left duplicate/dead code,16weak boundaries, missing tests, fallback-like paths, or wrappers. Inputs are the requested17feature/files and behavior to preserve. A file list scope is valid; keep the pass bounded18to it. In the Ralph workflow, run this skill on Ralph's changed files only, standard mode19unless explicitly requested otherwise.2021## Before editing22231. **Lock behavior with regression tests first**: identify behavior to preserve, run/add the narrowest targeted tests, and cover both primary and preserved compatibility/fail-safe fallback paths.242. **Create a cleanup plan before code**: list scope and smells, include fallback findings/classifications/escalation, and order safest/highest-signal fixes first.253. **Inventory fallback-like code** in scope: quick hacks, temporary workaround, temporary fallback, just bypass, just skip, fallback if it fails, swallowed errors, silent defaults, broad compatibility shims, and duplicate alternate execution paths.264. Classify each fallback: **Masking fallback slop** hides evidence, bypasses the contract, suppresses validation, swallows failures, silently defaults, or adds untested paths; **Grounded compatibility/fail-safe fallback** is narrow at an external/version/fail-safe boundary, documents rationale, preserves failure evidence, and tests primary plus fallback.275. Prefer root-cause repair, deletion, boundary repair, or explicit failure behavior. For broad/ambiguous/cross-layer/architectural findings, invoke `$ralplan` for consensus resolution; when already inside ralplan, ralph, team, or another OMX workflow, do not spawn a nested `$ralplan`—attach the finding to the active handoff.2829## Smell taxonomy and passes3031Classify before changing:3233- **Fallback-like code**: masking fallbacks, workaround branches, bypasses, swallowed errors, silent defaults, broad shims, alternate paths.34- **Duplication**: repeated logic, copy-paste branches, redundant helpers.35- **Dead code**: unused/unreachable code, stale flags, debug leftovers.36- **Needless abstraction**: pass-through wrappers, speculative indirection, single-use layers.37- **Boundary violations**: hidden coupling, leaky responsibilities, wrong-layer imports/side effects.38- **Missing tests**: behavior not locked or edge cases uncovered.39- **UI/design slop**: context-sensitive signals, not absolute bans; preserve intentional brand, design-system, accessibility, or product-context exceptions. Challenge Korean body text at 11-12px (generally 14px or larger); gratuitous box shadows; repetitive eyebrow + title + description + paragraph stacks and generic emoji badges; default AI blue/purple such as `#3B82F6`; reflexive 3-column or 4-column grids; and extreme gradients unless justified by context.4041Resolve the fallback-like code resolution gate first, then one smell at a time:42**Pass 1: Dead code deletion**; **Pass 2: Duplicate removal**; **Pass 3: Naming/error43handling cleanup**; **Pass 4: Test reinforcement**. Re-run targeted verification after44each pass and avoid unrelated refactors. Prefer deletion/existing utilities; no new45abstractions or dependencies unless explicitly required.4647## Evidence/output contract4849Report:5051```text52AI SLOP CLEANUP REPORT53Scope: [files/feature]54Behavior Lock: [targeted tests added/run]55Cleanup Plan: [bounded smells/order]56Fallback Findings: [finding -> masking fallback slop | grounded compatibility/fail-safe fallback -> escalation]57UI/Design Findings: [none/N/A or signal -> action/defer -> intentional rationale]58Passes Completed: [resolution gate; Passes 1-4]59Quality Gates: Regression tests, Lint, Typecheck, Tests, Static/security scan (PASS/FAIL/N/A)60Changed Files: [path -> simplification]61Remaining Risks: [none or deferred item]62```6364Include changed files, simplifications, fallback classifications/escalation status,65tests/diagnostics/build checks run, UI findings when relevant, and deferred risks. Keep66writer/reviewer separation for cleanup plans and approvals.6768## Exit condition6970Stop when the requested scope has behavior-lock evidence, each selected smell pass is71complete or explicitly deferred with rationale, verification is reported, and no72unrelated files or temporary artifacts remain. Never present an unverified cleanup as73complete; escalate a real architectural blocker rather than masking it.