Install
$ agentstack add skill-omar-obando-qwen-orchestrator-git-workflow ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Git Workflow Skill — Version Control Best Practices
This skill provides comprehensive git workflow guidance for team development.
Branching Strategy
Git Flow (Recommended for ERP/Enterprise)
main (production)
│
├── develop (integration)
│ │
│ ├── feature/JIRA-123-user-auth
│ ├── feature/JIRA-124-inventory-module
│ └── bugfix/JIRA-125-login-error
│
├── release/v1.2.0
└── hotfix/v1.1.1
Branch Naming Convention
feature/JIRA-123-short-description
bugfix/JIRA-124-short-description
hotfix/JIRA-125-critical-fix
release/v1.2.0
Commit Convention (Conventional Commits)
():
Types
| Type | Usage | | -------- | --------------------------------------- | | feat | New feature | | fix | Bug fix | | refactor | Code restructuring (no behavior change) | | docs | Documentation only | | test | Adding or updating tests | | chore | Build, config, tooling | | perf | Performance improvement | | ci | CI/CD changes | | style | Formatting (no logic change) |
Examples
feat(auth): add JWT refresh token rotation
- Implement refresh token storage in database
- Add token rotation on every refresh
- Invalidate old tokens after rotation
- Add tests for token expiry edge cases
Closes JIRA-123
fix(inventory): correct stock calculation for negative quantities
Stock was showing incorrect values when adjusting below zero.
Now clamps to zero and logs a warning.
Fixes JIRA-125
Commit Rules
- Atomic: Each commit does ONE thing
- Revertible: Each commit can be safely reverted
- Tested: Each commit has passing tests
- Described: Subject line ≤ 72 chars, body explains WHY
- No Secrets: Never commit .env, credentials, tokens
Merge Conflict Resolution
Protocol
- Pull latest from develop
- Rebase feature branch on develop
- Resolve conflicts manually (never auto-merge)
- Run full test suite after resolution
- Verify no regressions
- Push and create PR
Conflict Prevention
- Keep feature branches small and short-lived
- Pull/rebase frequently from develop
- Avoid modifying the same files as other branches
- Communicate with team about file ownership
Pull Request Template
## Description
[What does this PR do and why?]
## Type of Change
- [ ] Feature
- [ ] Bug fix
- [ ] Refactoring
- [ ] Documentation
- [ ] Test
## Testing
- [ ] Unit tests pass
- [ ] Integration tests pass
- [ ] Manual testing completed
## Checklist
- [ ] No secrets committed
- [ ] No unnecessary files
- [ ] Self-reviewed the code
- [ ] Documentation updated
When NOT to Use
Do NOT use this skill when:
- Writing application business logic (use domain-driven skill)
- Designing database schemas (use database-design skill)
- Writing API endpoint implementations (use api-design skill)
- Reviewing code for quality issues (use code-review skill)
- Performing security audits (use security-auditor skill)
- Analyzing deployment configurations (use deployment skill)
- Writing SQL queries (use sql-best-practices skill)
- Designing multi-page website layouts (use design-system skill)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Omar-Obando
- Source: Omar-Obando/qwen-orchestrator
- License: MIT
- Homepage: https://qwen.ai/qwencode
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.