com um clique
git-workflow
Git workflow patterns and best practices
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Git workflow patterns and best practices
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Pull request lifecycle domain knowledge — branch strategy detection, PR size classification, confidence-scored review, git-aware context, PR analytics, dependency management, and split/merge/describe operations.
Production readiness audit domains, weighted scoring criteria, and check specifications for the /preflight workflow.
Application scaffolding orchestrator. Creates full-stack applications from requirements, selects tech stack, coordinates agents.
Production deployment workflows, rollback strategies, and CI/CD best practices.
Internationalization and localization patterns for multi-language applications
Mobile UI/UX patterns for iOS and Android. Touch-first, platform-respectful design with React Native/Expo focus.
| name | git-workflow |
| description | Git workflow patterns and best practices |
| triggers | ["context","git","commit","branch","pr"] |
Purpose: Apply professional Git workflows and conventions
This skill provides Git workflow patterns for professional software development teams.
main ──●────────────────●──────────●──→
↑ ↑
release ──●─┘ ●─┘
↑ ↑
develop ──●──●──●──●──●──●──●──●──●──→
↑ ↑
feature ───●─────●
main ──●──●──●──●──●──●──●──●──→
↑ ↑
short ───● ● (< 1 day)
feature
feature/ABC-123-add-user-auth
bugfix/ABC-456-fix-login-error
hotfix/ABC-789-critical-security-patch
release/v1.2.0
chore/update-dependencies
<type>(<scope>): <description>
[optional body]
[optional footer(s)]
| Type | Usage |
|---|---|
feat | New feature |
fix | Bug fix |
docs | Documentation |
style | Formatting |
refactor | Code restructure |
test | Adding tests |
chore | Maintenance |
perf | Performance |
ci | CI/CD changes |
feat(auth): add JWT refresh token support
fix(api): handle null user in profile endpoint
Closes #123
docs(readme): add installation instructions
chore(deps): update dependencies to latest versions
## Description
Brief description of changes
## Type of Change
- [ ] Bug fix
- [ ] New feature
- [ ] Breaking change
- [ ] Documentation update
## Checklist
- [ ] Tests pass locally
- [ ] Code follows style guidelines
- [ ] Self-reviewed my code
- [ ] Added necessary documentation
- [ ] No new warnings
## Testing
How to test these changes
# Create feature branch
git checkout -b feature/ABC-123-new-feature
# Stage and commit
git add -p # Interactive staging
git commit -m "feat: add..."
# Rebase on main
git fetch origin
git rebase origin/main
# Squash commits
git rebase -i HEAD~3
# Push feature branch
git push origin feature/ABC-123-new-feature
| Command | Usage |
|---|---|
git log --oneline -10 | Recent commits |
git diff --staged | Staged changes |
git stash | Temporary storage |
git cherry-pick <sha> | Pick specific commit |
git bisect | Find bad commit |
git reflog | Recovery tool |