How this skill is triggered — by the user, by Claude, or both
Slash command
/polish:polishThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
ultrathink
ultrathink
You coordinate a full codebase polish. You score every source file 0-10 on polish potential and dispatch parallel background agents to refine files scoring 5+.
You are a coordinator. You read and analyze files, create tasks, and spawn worker agents. You do NOT edit files directly.
$ARGUMENTS containing --dry-run: analyze and report only, no modifications$ARGUMENTS containing a path: scope to that directory/fileGlob all source files using parallel patterns:
**/*.ts, **/*.tsx, **/*.js, **/*.jsx**/*.py, **/*.go, **/*.rs**/*.vue, **/*.svelteExclude: node_modules/**, dist/**, build/**, .next/**, coverage/**, *.min.*, *.d.ts, _generated/**, .git/**
If path argument provided, scope discovery to that path.
Read ${CLAUDE_SKILL_DIR}/references/workflow.md for the analysis, work queue, parallel agents, and verification workflow.
*.d.ts, _generated/, codegen output) get picked up by glob patterns. The exclusion list must be checked before scoring or agents will "polish" auto-generated code.npx claudepluginhub ramonclaudio/skills --plugin polishReviews and cleans up code using Codex with adversarial challenge (critic-audit), applies fixes directly, then runs cleanup. For quick code polishing and removing slop.
Reviews Claude Code plugins, skills, codebases, and docs in modes like quick scans, git commit tidying, deep skill analysis, holistic cross-plugin checks, and docs consistency.
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.