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

Gitflow

skill-mgiovani-cc-arsenal-gitflow · by mgiovani

Manage a gitflow branching workflow — starting and finishing feature,

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

Install

$ agentstack add skill-mgiovani-cc-arsenal-gitflow

✓ 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-mgiovani-cc-arsenal-gitflow)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo 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 Gitflow? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Gitflow

This skill covers the full gitflow branching model with two long-lived branches and short-lived branches off them.

  • main is production. Merging to main triggers your deploy pipeline. Treat every merge to main as a production deploy that your users will see shortly after.
  • dev (sometimes called develop) is the integration branch. Day-to-day feature and fix work lands here first.
  • Short-lived branches: feat/ and fix/ off dev, release/ off dev, hotfix/ off main.

Pick the flow

Read the matching reference in full and follow it step by step. Each one is self-contained.

| The user wants to... | Flow | Read | | ----------------------------------------------------------------- | ------- | ------------------------- | | Ship the accumulated dev work to production | Release | references/release.md | | Get an urgent fix into production now, can't wait for a release | Hotfix | references/hotfix.md | | Build a new feature or a fix that will ride the next release | Feature | references/feature.md |

If the intent is ambiguous (e.g. "ship the settings fix"), ask one question: is this urgent enough to go straight to production (hotfix), or does it ride the next release (feature now, release later)?

Universal rails

These apply to every flow. They exist because main is live production and a mistake here is user-visible, so the cost of a shortcut is real.

  • main is a deploy button. Never merge to main while any CI check is not green. The full Definition-of-Done gate runs on a PR to main; wait for all of it. Poll CI every few minutes rather than tight-looping, to keep token cost sane. No CI pipeline configured on the repo? Skip the wait-for-green step and say so explicitly before merging.
  • Always update CHANGELOG.md during a release and a hotfix (never per-feature; the changelog is assembled at ship time). See references/changelog.md for the format.
  • Conventional Commits. Follow the Conventional Commits spec. Keep commit messages, PR titles, PR bodies, the changelog, and release notes clean and professional.
  • Never force-push. Never bypass git hooks (--no-verify or equivalent). The pre-push hooks are part of the safety net. If a push fails due to a hook, investigate and root-fix the underlying issue; never bypass.
  • Stage only the files you intend. Prefer git add over blanket staging commands. Verify what you are about to stage with git diff --staged before committing.
  • Verify before every push. Run git log --oneline ..HEAD and git diff --stat ..HEAD so you know exactly what is going to the remote, especially before anything that touches main.
  • After any merge to main (release or hotfix), open a break-glass revert PR and leave it OPEN. It is the one-click rollback. Never merge it yourself. See the shared procedure in references/release.md (the revert step is identical for hotfix).

Versioning

Semantic versioning. The current version lives in your project manifest (package.json, pyproject.toml, Cargo.toml, etc.) on both long-lived branches — kept in sync; both are at the last released version. No version manifest in the repo? Version via the latest git tag alone and skip the bump-file step.

  • Release: bump minor for new features (e.g. 1.1.0 to 1.2.0), major for breaking changes.
  • Hotfix: bump patch (e.g. 1.1.0 to 1.1.1).
  • The tag is v, annotated, placed on the merge commit on main.

Merge methods (they differ by target, on purpose)

  • Feature/fix PR into dev: squash merge (one clean commit per PR with the (#NNN) suffix). This keeps dev history readable.
  • release/* or hotfix/* into main: merge commit (--no-ff). This preserves the release as a first-parent merge so the break-glass revert (git revert -m 1) is clean.
  • Back-merge release/* or hotfix/* into dev: merge commit.

Delete short-lived branches yourself once they are merged everywhere they need to go.

Stay in the loop

These flows touch production. When CI is running or a deploy is in flight, report each milestone to the user as it lands (CI green, merged, deploy healthy, tagged) rather than going silent. If any gate is red, stop and root-fix; do not merge around it.

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.