skills/git-workflow/SKILL.md
Manage Git branches, commits, and pull requests following best practices
npx skillsauth add tatat/agents-playground git-workflowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage Git operations and follow branching best practices.
feature/ - New features (feature/add-user-auth)
bugfix/ - Bug fixes (bugfix/fix-login-error)
hotfix/ - Urgent production fixes (hotfix/security-patch)
release/ - Release preparation (release/v1.2.0)
<type>(<scope>): <subject>
<body>
<footer>
feat: New featurefix: Bug fixdocs: Documentationrefactor: Code refactoringtest: Adding testschore: Maintenancefeat(auth): add OAuth2 login support
- Implement Google OAuth2 provider
- Add token refresh mechanism
- Store tokens securely in session
Closes #123
git checkout -b feature/new-feature
# ... make changes ...
git add .
git commit -m "feat: add new feature"
git push -u origin feature/new-feature
# Create PR
git checkout main
git pull origin main
git checkout feature/my-feature
git rebase main
development
Extract structured data from web pages using CSS selectors and XPath
tools
Plan trips with itineraries, budgets, and local recommendations
tools
Translate text between languages while preserving meaning and context
development
Generate unit tests, integration tests, and test fixtures for code