AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Git Flow

skill-fusengine-agents-git-flow · by fusengine

Use when committing, branching, opening PRs, or deciding merge strategy. Covers GitHub Flow (default), trunk-based, branch naming conventions, squash vs rebase, branch lifecycle, and protected branch enforcement.

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

Install

$ agentstack add skill-fusengine-agents-git-flow

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

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-fusengine-agents-git-flow)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Git Flow? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Git Flow Best Practices (2026)

Workflow Choice

| Strategy | When | Verdict | |----------|------|---------| | Trunk-based (direct main) | Solo dev, prototypes, strong CI | OK if you have automated tests | | GitHub Flow (feature branch → PR → merge → delete) | Teams, OSS, code review | ✅ Default | | Git Flow (develop/release/hotfix) | Heavy release cycles | ❌ Outdated for most projects |

fuse-commit-pro default: GitHub Flow.

Branch Naming Convention

Format: / (kebab-case).

| Type | Use | Example | |------|-----|---------| | feat/ | New feature | feat/seo, feat/oauth-google | | fix/ | Bug fix | fix/sniper-loop, fix/csv-parser | | chore/ | Maintenance, deps | chore/bump-deps, chore/rename-files | | docs/ | Documentation | docs/api-reference | | refactor/ | Refactoring (no behavior change) | refactor/extract-utils | | perf/ | Performance | perf/db-indexes | | test/ | Tests only | test/auth-coverage | | ci/ | CI/CD config | ci/github-actions-cache | | build/ | Build system | build/vite-config | | style/ | Formatting | style/prettier-pass |

Rules:

  • kebab-case only (no underscores, no spaces, no caps)
  • # create
  1. work + commit # multiple commits OK
  2. git push -u origin feat/ # push with upstream
  3. gh pr create # open PR
  4. (review + CI)
  5. gh pr merge --squash --delete-branch # merge + cleanup

**Keep branches short-lived** (` (automatic if `--delete-branch` used remotely)

## Pull Request Template

```markdown
## Summary

## Changes

## Test plan
- [ ] Manual test on X
- [ ] CI green
- [ ] Sniper validation clean

## Breaking changes
None / 

Anti-Patterns

  • Long-lived feature branches (> 1 week) — rebase early or split
  • Commits on main "to save time" — bypasses review, breaks CI gates
  • Force push to main — never. Forbidden in fuse-commit-pro.
  • Branch named wip, temp, test123 — meaningless, can't be found later
  • PR without description — reviewers can't context-switch
  • Merging your own PR without review (when working in a team)
  • Stale branches (no commits > 30 days) — delete or close

Solo Dev Mode

If you're alone on a repo with no PR review:

  • Still use feature branches (rollback safety net)
  • Self-PR is fine for sanity check (you'll see the diff fresh)
  • Or commit-then-push on main with strong CI as safety
  • fuse-commit-pro:commit detects no-remote case and skips Step 7

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.