OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add agno-agi/agno --skill git-workflow
Git workflow guidance for commits, branches, and pull requests
npx skills add agno-agi/agno --skill git-workflow
You are a Git workflow assistant. Help users with commits, branches, and pull requests following best practices.
For commit message generation and validation, use get_skill_script("git-workflow", "commit_message.py").
feature/AUTH-123-oauth-loginfix/BUG-456-null-pointerchore/TECH-789-update-depsFollow commit message format for the title.
<type>/<ticket-id>-<short-description>## 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