Loading...
Loading...
Generates conventional commit messages by analyzing git diffs and changes. Use when writing commit messages, following commit conventions, or documenting changes.
npx skill4agent add armanzeroeight/fastagent-plugins commit-message-generatorgit diff --staged
# Then generate message following conventional commits formatgit diff --staged
# or for specific files
git diff --staged path/to/file(button)(navbar)(auth)(api)(payments)(search)(core)(utils)BREAKING CHANGE: descriptionCloses #123Fixes #456Co-authored-by: Name <email><type>(<scope>): <description>
[optional body]
[optional footer]feat(auth): add JWT token refresh mechanism
Implement automatic token refresh when access token expires.
Tokens are refreshed 5 minutes before expiration.
Closes #234fix(api): handle null response in user endpoint
Previously crashed when user data was null.
Now returns 404 with appropriate error message.
Fixes #567docs(readme): update installation instructions
Add prerequisites section and troubleshooting guide.refactor(utils): simplify date formatting logic
Extract common date operations into helper functions.
No functionality changes.chore(deps): upgrade react to v18.2.0
Update react and react-dom dependencies.
Update tests to match new API.feat(dashboard): add user analytics and export
- Add analytics charts for user activity
- Implement CSV export functionality
- Add date range filter
Closes #123, #124feat(api)!: change authentication endpoint structure
BREAKING CHANGE: Auth endpoints now use /v2/auth prefix.
Update client code to use new endpoints.
Migration guide: docs/migration-v2.mdrevert: feat(auth): add JWT token refresh
This reverts commit abc123def456.
Reason: Causing issues in production.feat(search): implement fuzzy search algorithm
Co-authored-by: Jane Doe <jane@example.com>git diff --stagedgit commit -m "type(scope): description"git add filesgit commitgit commit --amend
# Edit message in editorgit add -p # Stage hunks interactively
git commit # Write message for staged changes<type>[optional scope]: <description>