Loading...
Loading...
This skill should be used when the user asks to commit changes, wants help writing commit messages, or has finished a task and needs to save their work. Triggers include: "commit this", "commit changes", "save my changes", "write a commit", "help me commit", "create a commit", "conventional commit", "/commit". Always confirms with user before committing. Never pushes to remote.
npx skill4agent add sergio-bershadsky/ai commitgit status
git diff --stat<type>(<scope>): <short description>
<body with details>
<footer>featfixdocsrefactorstyletestchorefeat(auth): add password reset flow
- Add forgot password endpoint
- Implement email verification token
- Add password reset form component
Closes #123git diff --staged # or git diff if not stagedgit add -A # or specific files
git commit -m "<message>"git log -1 --statgit push## Proposed Commit
**Type:** feat
**Scope:** auth
**Files:**
- src/auth/reset.ts (new)
- src/components/ResetForm.tsx (new)
- src/api/routes.ts (modified)
**Message:**
**Diff summary:**
3 files changed, 245 insertions(+)
---
Ready to commit these changes?