Промпт
Рекомендовано
Commit Message Generator
Generate clear, conventional commit messages following best practices.
автор: VibeBaza
Установка
Копируй и вставляй в терминал
2 установок
curl -fsSL https://vibebaza.com/i/commit-message | bash
Generate a commit message for the following changes.
Format
Use conventional commits format:
<type>(<scope>): <description>
[optional body]
[optional footer]
Types
feat: New featurefix: Bug fixdocs: Documentation changesstyle: Formatting, missing semicolons, etc.refactor: Code restructuring without behavior changeperf: Performance improvementstest: Adding or updating testschore: Maintenance tasks, dependencies
Guidelines
- Subject line: 50 characters max, imperative mood
- Body: Explain what and why, not how
- Footer: Reference issues, breaking changes
Examples
feat(auth): add OAuth2 login with Google
Implement Google OAuth2 authentication flow.
Users can now sign in using their Google accounts.
Closes #123
fix(api): handle null response from external service
The external API occasionally returns null instead of
an empty array. Added null check to prevent crashes.
Fixes #456
refactor(database): extract query builder into service
Move complex query construction logic from controllers
to a dedicated QueryBuilder service for better testability.
Now analyze the diff and generate an appropriate commit message.