Help us improve
Share bugs, ideas, or general feedback.
From pro-workflow
Removes AI-generated code slop, unnecessary comments, and over-engineering from the current branch diff. Use before committing or when code feels over-engineered.
npx claudepluginhub rohitg00/pro-workflow --plugin pro-workflowHow this skill is triggered — by the user, by Claude, or both
Slash command
/pro-workflow:deslopThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Check the diff against main and remove AI-generated slop introduced in the branch.
Removes 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.
Polishes code changes before PR by recovering branch context, checking against codebase guidelines for changed files, removing AI slop like extra comments and casts, and final review.
Identifies and interactively removes AI-generated slop like unnecessary comments and verbosity from staged or recent git changes.
Share bugs, ideas, or general feedback.
Check the diff against main and remove AI-generated slop introduced in the branch.
Use after completing changes, before committing, or when code feels over-engineered.
git fetch origin main
git diff origin/main...HEAD --stat
git diff origin/main...HEAD
git diff origin/main...HEAD to verify only slop was removed.npm test -- --changed --passWithNoTests 2>&1 | tail -10any used only to bypass type issues_vars, re-exports, // removed comments)