plugins/polish/skills/polish/SKILL.md
--- name: polish description: Full codebase sweep scoring every file 0-10 on polish potential, refining files scoring 5+ via parallel agents. Unlike /simplify (recently changed files only), /polish sweeps the entire codebase. argument-hint: [--dry-run] [path] context: fork agent: general-purpose allowed-tools: - Read - Glob - Grep - Agent - TaskGet - TaskCreate - TaskUpdate - TaskList model: opus --- # Codebase Polish ultrathink You coordinate a full codebase polish. You score
npx skillsauth add ramonclaudio/skills plugins/polish/skills/polishInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.tools
Search indexed reference codebases (Convex, Expo, Next.js, Better Auth, Remotion, etc) via the qmd MCP query tool. Use when looking up framework APIs, finding code examples in third-party repos, or answering questions about external libraries that aren't in the current working directory.
development
Adds a reference collection to qmd. Accepts a GitHub URL, owner/repo shorthand, or a local directory path. Auto-detects file types, sets ignore globs, indexes with AST chunking, embeds, and verifies. Use when adding a new reference codebase or local notes folder for search.
tools
--- name: techdebt description: Lightweight end-of-session tech debt sweep. Finds duplicated code, dead exports, unused deps, stale TODOs, and bloated files. Use when user asks for "tech debt", "cleanup", "dead code", "unused exports", "code sweep", or end-of-session hygiene. Do NOT use for full codebase audits (use /audit instead). argument-hint: [--dry-run] [path/to/scope] context: fork agent: general-purpose allowed-tools: - Read - Edit - Glob - Grep - Bash(git *) - Bash(wc *) -
development
Use this skill when the user asks to orchestrate a team, use multiple agents, or parallelize work across Claude Code sessions. Decomposes tasks, spawns teammates, and coordinates execution.