Final Feature Commit in AI

From the AI Workflow cheat sheet · Feature Completion & Review · verified Jul 2026

Final Feature Commit

Create a comprehensive commit for the completed feature

bash
FINAL COMMIT PROCESS:

1. Run all tests: npm test
2. Run linter: npm run lint
3. Check TypeScript: npm run type-check
4. If all pass, commit final changes

COMPREHENSIVE COMMIT MESSAGE:
git add .
git commit -m "feat: complete user authentication feature

- NextAuth v5 with credentials provider
- Email/password signup and login
- Protected routes middleware
- Password reset flow
- Comprehensive test coverage"

# Optional milestone tag
git tag v0.1.0-auth

THEN:
- Take a short break (seriously, step away)
- Review PLAN.md for next feature
- Update claude.md with learnings
- Go back to feature breakdown step
- Repeat the entire process
💡 Comprehensive commit message documents the complete feature
⚡ Tags create clear milestones in your git history
📌 Taking breaks prevents burnout and maintains quality
🎯 Each feature teaches you something - capture those learnings
gitworkflow

More AI tasks

Back to the full AI Workflow cheat sheet