Generate a well-formatted commit message for staged changes
Generates conventional commit messages from staged changes and prompts for confirmation.
/plugin marketplace add Benny9193/devflow/plugin install benny9193-devflow@Benny9193/devflowAnalyze the staged changes and generate a proper commit message.
git diff --cached to see staged changesgit status to see files affectedUse conventional commits format:
<type>(<scope>): <subject>
<body>
<footer>
Types:
feat - New featurefix - Bug fixdocs - Documentation onlystyle - Formatting, no code changerefactor - Code restructuring, no behavior changeperf - Performance improvementtest - Adding/updating testschore - Maintenance, dependencies, configRules:
feat(auth): add OAuth2 login with Google
Implement Google OAuth2 authentication flow using passport.js.
Users can now sign in with their Google accounts.
Closes #123
fix(api): handle null response from payment provider
Payment API occasionally returns null on timeout. Added null check
and retry logic to prevent 500 errors.
Fixes #456
git commit -m "..." with the message