From shipshitdev-library
Generates conventional commit messages from staged Git changes by reviewing diffs, categorizing as feat/fix/refactor/docs/test/chore, and formatting as type(scope): description. Use before committing.
npx claudepluginhub shipshitdev/skillsThis skill uses the workspace's default tool permissions.
Generate meaningful commit messages based on staged changes.
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.
Generate meaningful commit messages based on staged changes.
git status
git diff --staged
git log --oneline -5
Categorize:
feat: New featurefix: Bug fixrefactor: Code restructuringdocs: Documentation onlytest: Adding/updating testschore: Maintenance tasksFormat: type(scope): short description
Ensure message:
feat(auth): add password reset flowfix(api): handle null response from external servicerefactor(utils): extract date formatting to shared helperdocs: update API endpoint documentation