From shipshitdev-library
Removes AI-generated code artifacts like console.logs, any types, unused imports, dead/commented code, debug statements while preserving project structure. Replaces consoles with logger, adds types, verifies with tsc/tests.
npx claudepluginhub shipshitdev/skillsThis skill uses the workspace's default tool permissions.
Remove AI-generated artifacts and code sloppiness while maintaining project structure.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Analyzes competition with Porter's Five Forces, Blue Ocean Strategy, and positioning maps to identify differentiation opportunities and market positioning for startups and pitches.
Remove AI-generated artifacts and code sloppiness while maintaining project structure.
any types — Replace with proper types/interfacesRead project rules before making changes:
cat .agents/SYSTEM/critical/CRITICAL-NEVER-DO.md 2>/dev/null || true
Determine if monorepo or single project:
ls packages/ 2>/dev/null || ls pnpm-workspace.yaml 2>/dev/null || true
If monorepo: process each package separately.
Search for each artifact type across the codebase.
For each package/project:
any types — Create interfaces, replace typesnpm run type-check || tsc --noEmit
npm test
Log cleanup in session file with packages cleaned and artifact counts.
--all: clean across entire monorepo--check: dry run, show what would be cleaned