Install
$ agentstack add skill-fusengine-agents-git-flow ✓ 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 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
- work + commit # multiple commits OK
- git push -u origin feat/ # push with upstream
- gh pr create # open PR
- (review + CI)
- 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:commitdetects 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.
- Author: fusengine
- Source: fusengine/agents
- License: MIT
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.