Loading...
Loading...
Conventional Commits standard for consistent commit messages. Use when committing code, reviewing commit history, or setting up git workflows. Includes commit types, scopes, and breaking change format.
npx skill4agent add alicoder001/agent-skills gitStandardized commit message format for clean git history.
<type>(<scope>): <description>
[optional body]
[optional footer(s)]| Type | Description | Example |
|---|---|---|
| New feature | |
| Bug fix | |
| Documentation | |
| Formatting | |
| Code restructure | |
| Performance | |
| Tests | |
| Build system | |
| CI/CD | |
| Maintenance | |
feat(auth): add OAuth support
fix(cart): correct total calculation
refactor(api): restructure endpointsfeat(api)!: change response format
BREAKING CHANGE: API response now uses camelCase keys# ✅ Good
feat(user): add profile picture upload
fix(checkout): resolve payment validation error
docs(api): add authentication endpoints
refactor(components): extract common button styles
# ❌ Bad
update code
fixed bug
WIP
misc changesfeat(dashboard): add analytics widget
- Add chart component for daily stats
- Integrate with analytics API
- Add loading skeleton
Closes #123