From essentials
Removes AI-generated code slop (extra comments, defensive checks, casts) from the current branch by diffing against main. Reports changes made.
How this skill is triggered — by the user, by Claude, or both
Slash command
/essentials:de-slopifyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The branch to diff against is $1. If no branch was provided, default to `main`.
The branch to diff against is $1. If no branch was provided, default to main.
Check the diff against the branch, and remove all AI generated slop introduced in this branch.
This includes:
Report at the end with only a 1-3 sentence summary of what you changed
npx claudepluginhub nicknisi/claude-plugins --plugin essentialsRemoves AI-generated code slop from current branch by checking git diff against main, targeting extra comments, abnormal defensive checks, try/catch blocks, and style inconsistencies. Summarizes changes.
Removes AI-generated slop from the branch diff — unearned comments, defensive try/catch on trusted paths, `any` casts that only silence the type-checker, and nesting that should be an early return. Use before claiming a coding task complete, before a commit or PR, or when the user asks for slop cleanup. Do not use to hunt correctness or security defects (rc-code-review), to report on over-engineering without editing (rc-simplify-review), or to fix existing review issues (rc-fix-reviews).