AgentStack
SKILL verified MIT Self-run

Git Workflow

skill-omar-obando-qwen-orchestrator-git-workflow · by Omar-Obando

>

No reviews yet
0 installs
17 views
0.0% view→install

Install

$ agentstack add skill-omar-obando-qwen-orchestrator-git-workflow

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

Are you the author of Git Workflow? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

  1. Atomic: Each commit does ONE thing
  2. Revertible: Each commit can be safely reverted
  3. Tested: Each commit has passing tests
  4. Described: Subject line ≤ 72 chars, body explains WHY
  5. No Secrets: Never commit .env, credentials, tokens

Merge Conflict Resolution

Protocol

  1. Pull latest from develop
  2. Rebase feature branch on develop
  3. Resolve conflicts manually (never auto-merge)
  4. Run full test suite after resolution
  5. Verify no regressions
  6. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.