Loading...
Loading...
Git workflow guidance for commits, branches, and pull requests
npx skill4agent add agno-agi/agno git-workflowget_skill_script("git-workflow", "commit_message.py")<type>(<scope>): <subject>
<body>
<footer>feat(auth): add OAuth2 login support
Implemented OAuth2 authentication flow with Google and GitHub providers.
Added token refresh mechanism and session management.
Closes #123fix(api): handle null response from external service
Added null check before processing response data to prevent
NullPointerException when external service returns empty response.
Fixes #456<type>/<ticket-id>-<short-description>feature/AUTH-123-oauth-loginfix/BUG-456-null-pointerchore/TECH-789-update-deps## Summary
Brief description of what this PR does.
## Changes
- Change 1
- Change 2
## Testing
How was this tested?
## Checklist
- [ ] Tests added/updated
- [ ] Documentation updated
- [ ] No breaking changesgit checkout main
git pull origin main
git checkout -b feature/TICKET-123-descriptiongit add -p # Interactive staging
git commit -m "type(scope): description"git fetch origin
git rebase origin/maingit push -u origin feature/TICKET-123-description
# Then create PR on GitHub/GitLab