Best for
- "I want to start work on UPEX-123" → branch creation
- "commit and push", "subir cambios", "push to main" → commit + push flow
- "abrí un PR contra staging" → PR creation
upex-galaxy/agentic-qa-boilerplate/.agents/skills/git-flow-master/SKILL.md
End-to-end Git operator for any branching strategy. Auto-detects the project's strategy (solo-main, main+integration, enterprise multi-branch, trunk-based, GitFlow, GitHub Flow, GitLab Flow, SDET integration-trunk for chained test-automation suites) from .git config, branches, and the `git_strategy:` block in `.agents/project.yaml`, then adapts every commit, branch, push, PR, conflict-fix, and chained-PR action to that strategy. Use this skill whenever the user wants to: create a branch (`crear
Decision brief
This skill is the project's single entry point for everything that happens on the version-control layer: creating branches, writing commits, pushing safely, opening pull requests, resolving conflicts, and planning chained / stacked PRs when a change outgrows the review budget.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Declared | Source record | Install path and trigger |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/upex-galaxy/agentic-qa-boilerplate --skill ".agents/skills/git-flow-master"Inspect the Agent Skill "git-flow-master" from https://github.com/upex-galaxy/agentic-qa-boilerplate/blob/b71a4a624498a6bb99201f72b6ae6342b4542e8b/.agents/skills/git-flow-master/SKILL.md at commit b71a4a624498a6bb99201f72b6ae6342b4542e8b. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Run these silently every invocation. Do not act until the picture is clear:
gitstrategy.policy. in .agents/project.yaml records what the team DECIDED. The hosting platform records what is actually ENFORCED. These drift, and the drift only surfaces at the worst moment: a merge that stalls on an approval nobody expected, or a "protected" branch that was n…
The skill supports eight strategies (see references/branching-strategies.md for the full catalogue, detection signals, and trade-offs):
At the top of any git intent, after Step 1 (repo state) and Step 2 detection have run, evaluate the gate — it fires on EITHER of two conditions:
Decide the prefix from the dominant change. Use this fixed vocabulary (mixed-changes precedence: feat fix refactor test docs chore):
Permission review
The documentation asks the agent to read local files, directories, or repositories.
## Step 1 — Always: read the repo stateThe documentation asks the agent to run terminal commands or scripts.
git statusThe documentation asks the agent to run terminal commands or scripts.
git branch --show-currentThe documentation asks the agent to create, modify, or delete local files.
Once resolved (whether by detection or by asking), write/update the `git_strategy:` block **in place** inside `.agents/project.yaml` (preserve the rest of the file — it holds project identity, env config, etc.; create the block if it is misThe documentation asks the agent to create, modify, or delete local files.
Write the rendered body to a tempfile (e.g. `$(mktemp)`) and pass it via `gh pr create --body-file` to avoid escaping issues.The documentation asks the agent to read local files, directories, or repositories.
**Read repo state** — Step 1 (already always runs).Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 93/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 20 | Source | Repository attention, not individual Skill quality |
| Compatibility | 1 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
This skill is the project's single entry point for everything that happens on the version-control layer: creating branches, writing commits, pushing safely, opening pull requests, resolving conflicts, and planning chained / stacked PRs when a change outgrows the review budget.
It does not assume one branching model. The project may run on main only, on main + staging, on a multi-branch enterprise layout, or on any of the well-known flows (trunk-based, GitFlow, GitHub Flow, GitLab Flow). The skill detects which one is active and adapts every command accordingly. The detection is sticky: once resolved, the strategy is recorded in the git_strategy: block of .agents/project.yaml so future invocations skip the prompt.
Trigger on any of these intents — even without literal keywords:
If the user is asking about testing a ticket, authoring test cases, writing automated tests, or running regression suites — that is not this skill. Hand back to /sprint-testing, /test-documentation, /test-automation, or /regression-testing.
Every git-flow-master invocation maps to one (or a sequence) of these six operations. Operation choice is driven by the user's request; strategy resolution shapes how each operation runs.
| Op | Trigger phrases (examples) | Skill behaviour |
|---|---|---|
| Branch | "create branch", "new feature branch", "start UPEX-123" | Resolve strategy → propose name with prefix + issue key → wait for OK → checkout |
| Commit | "commit this", "commit and push", "make atomic commits" | Group by responsibility → propose conventional commits → wait for OK → execute one-by-one |
| Push | "push", "push to main", "subir cambios" | Diagnose upstream → confirm if pushing to a protected branch → never --force without explicit user opt-in |
| PR | "create PR", "abrir PR", "gh pr create" | Pick base branch from strategy → render body inline → ask labels/reviewers → call gh pr create |
| Conflict | "fix conflict", "rebase failed", "push rejected" | Diagnose first (see references/conflict-resolution.md) → present options → guide resolution → verify clean state |
| Strategy Setup | "set up our git strategy", "bootstrap branching", "configura el flujo de git", "materialize the flow" | Resolve strategy → run decision questionnaire (Q1-Q4) → conditionally create/ff-sync long-lived branches (never force) → write the git_strategy: block in .agents/project.yaml. Skips questions already answered by non-n/a git_strategy.decisions.* fields. See references/strategy-setup.md. |
When the operation is ambiguous (user just says "git-flow-master" or "let's do the git stuff"), report the current repo state (Step 1 below) and ask what they need.
Run these silently every invocation. Do not act until the picture is clear:
git status
git branch --show-current
git branch -a
git diff --stat
git log --oneline -5
git fetch origin
git status -sb
git remote -v
Summarise to the user:
origin); some have a fork + upstream.This summary is cheap, prevents 90% of mistakes, and is the input to every subsequent decision.
git_strategy.policy.* in .agents/project.yaml records what the team DECIDED. The hosting platform records what is actually ENFORCED. These drift, and the drift only surfaces at the worst moment: a merge that stalls on an approval nobody expected, or a "protected" branch that was never protected.
Run this ONCE per session, at the first push / PR / merge intent (not on read-only operations), and cache the result for the rest of the session.
Run the tool; do not perform the queries by hand:
bun run git:policy verify # read-only; exit 1 on drift
bun run git:policy verify --stamp # same, and records the reconciliation when clean
It queries BOTH GitHub protection mechanisms for every branch in git_strategy.branches / protected, compares the union against the declared policy, and prints each divergence as declared vs enforced. The strategy-to-ruleset mapping and what the tool deliberately does not manage: references/ruleset-parity.md.
Why a tool rather than a checklist. This reconciliation existed only as prose in the sibling boilerplate and kept not happening — that repo shipped require_pr_reviews: 0 against a host demanding one approval plus a code-owner review, and it surfaced months later as a refused merge. This repo had the identical divergence. A script performs every query on every run; a procedure performs the ones the reader remembered.
Facts that still bind you when reading its output:
404 from branches/{b}/protection does NOT mean the branch is unprotected. A repo governed by rulesets returns 404 there while enforcing PR requirements, approvals, signed commits and non-fast-forward bans through rules/branches/{b}. Stopping at the classic endpoint produces a confident "unprotected" reading on a branch that requires a reviewed pull request.Changes must be made through a pull request, that was a BYPASS: report it as one, never as permission. With git_strategy.policy.admin_bypass: true (or the divergence listed in git_strategy.policy.accepted_divergences), the Bypassed rule violations remote line is the DOCUMENTED norm — mention it in the report as expected, do NOT treat it as an anomaly, do NOT stall asking for confirmation, and NEVER open a PR to "satisfy" the rule.require_code_owner_review: true with no CODEOWNERS file is unsatisfiable, not strict. Nobody outside the bypass list can clear it, so every merge becomes a bypass.On drift, report — never auto-correct. Three legitimate resolutions: update .agents/project.yaml to match the host, change the host (bun run git:policy apply, dry run until --yes), or accept the divergence and record WHY in this project's own AGENTS.md. Editing either side needs the user's choice.
The skill supports eight strategies (see references/branching-strategies.md for the full catalogue, detection signals, and trade-offs):
| Strategy | One-line description |
|---|---|
solo-main | Single long-lived branch (main). All work lands directly. Best for solo projects, scratch repos, prototypes. |
main-integration | main (production) + a single integration branch (staging / dev / develop). Features merge to integration, release-promote to main. |
enterprise | main + integration + many short-lived feature/*, fix/*, release/*, hotfix/* branches. Adds environment branches when needed. |
trunk-based | Trunk (main) is the only long-lived branch. Short-lived feature branches (<1 day) merge fast, behind feature flags. CI gate is non-negotiable. |
gitflow | Vincent Driessen's classic. main (releases) + develop (integration) + feature/* + release/* + hotfix/*. Heavyweight; mostly legacy. |
github-flow | main always deployable. feature/* branches → PR → merge → deploy. No staging/develop branch. |
gitlab-flow | GitHub Flow + environment branches (pre-production, production) to model deployment promotion. |
sdet | SDET Gitflow. main (confirmed tests) + ephemeral per-suite integration trunk test/<module>-suite. Test tickets chain through the trunk (--no-ff); one final PR → main. For chained test-automation suites. Opt-in; see references/sdet-integration-trunk.md. |
Apply in order; stop at the first definitive answer:
git_strategy: block in .agents/project.yaml — read it. If git_strategy.strategy is non-null (one of the eight slugs), it + git_strategy.branches (production / integration / ephemeral_pattern) + git_strategy.decisions (promote_method / feature_merge / hotfix_policy) ARE the persisted decision — use them. Each git_strategy.decisions.* field whose value is NOT n/a/empty means Strategy Setup SKIPS that question on re-run (idempotent — idempotency is keyed off the git_strategy.decisions.* fields, not markers). Inherited-template guard: the boilerplate ships the block FILLED (strategy: solo-main) and a scaffolded project INHERITS it verbatim (the scaffolder only patches project.project_name / project.project_key). So a non-null git_strategy.strategy is only authoritative when the project is actually onboarded. Read project.project_name in the SAME file: if git_strategy.strategy is non-null BUT project.project_name is null, the block was INHERITED from the template (not chosen for THIS project) — treat the strategy as UNCONFIRMED and route to the Bootstrap trigger's inherited case (it still operates under the inherited strategy if the offer is declined). If project.project_name is set, the block is confirmed → use it normally, no nudge.git branch -a shows only main (or master) and no integration branch in the remote → solo-main.main (or master) + one of {staging, dev, develop, integration} exists upstream → main-integration (record the integration branch name).main + integration + active feature/* or release/* branches in git branch -a → enterprise..gitlab-ci.yml (suggests gitlab-flow), release/* and hotfix/* long-lived branches (suggests gitflow)./test-automation), surface sdet as the recommended option. sdet is opt-in only — never inferred silently from layout; a live test/<module>-suite trunk with test/{KEY}-* PRs targeting it confirms an already-active sdet suite.Once resolved (whether by detection or by asking), write/update the git_strategy: block in place inside .agents/project.yaml (preserve the rest of the file — it holds project identity, env config, etc.; create the block if it is missing). NEVER write a separate file. It is the single source of truth. At minimum the first five operations need git_strategy.strategy + git_strategy.branches; the full schema (with git_strategy.decisions, git_strategy.protected, git_strategy.policy, git_strategy.branch_prefixes, git_strategy.meta) is populated by Strategy Setup (3.6).
# .agents/project.yaml — git_strategy block (only the fields that apply shown)
git_strategy:
strategy: main-integration
branches:
production: main
integration: staging
ephemeral_pattern: null
The block is the source of truth; its git_strategy.description field is the one-paragraph human summary. The user can edit it; the next invocation re-reads it.
AGENTS.md's ## Git Strategy section is just a pointer to .agents/project.yaml (git_strategy: block) — NEVER write strategy policy or branch decisions into AGENTS.md.
If the strategy uses an integration branch with a non-default name (anything other than staging), record it under git_strategy.branches.integration so commits don't have to re-detect.
Block fields and idempotent setup. git_strategy.strategy + git_strategy.branches are the minimum the first five operations need. Strategy Setup (3.6) additionally populates the three git_strategy.decisions.* fields (promote_method, feature_merge, hotfix_policy) plus the git_strategy.policy.* fields (Q4); these gate questionnaire skips. On any later invocation, detection reads the block and treats each git_strategy.decisions.* field that is NOT n/a/empty as an already-answered questionnaire question — Strategy Setup re-run only asks the questions whose git_strategy.decisions.* fields are still n/a, and never recreates a branch that already exists.
At the top of any git intent, after Step 1 (repo state) and Step 2 detection have run, evaluate the gate — it fires on EITHER of two conditions:
(a) Unset —
git_strategy.strategyin.agents/project.yamlis null (or thegit_strategy:block is absent) AND the repo looks fresh — any of: onlymain/masterexists locally and on the remote; fewer than ~3 commits; or a boilerplate sentinel file is present (e.g..agents/project.yaml).(b) Inherited —
git_strategy.strategyis non-null BUTproject.project_name(same file) isnull. The block was INHERITED from the boilerplate template (this project has not been onboarded yet) — it was NOT chosen for THIS project. Treat it as UNCONFIRMED.
If EITHER condition is true, OFFER (do not auto-execute, do not silently pick a strategy), using the matching prompt:
(unset case (a)) "No git strategy is set up yet. Want me to run Strategy Setup — pick the flow, create the branches it needs, and write the
git_strategy:block in.agents/project.yaml? (Y/N)"
(inherited case (b)) "This project's
git_strategylooks inherited from the boilerplate (project not onboarded yet —project.project_nameis null). Want to run Strategy Setup to define this project's own flow? (Y/N)"
Rules:
No proceeds with the requested operation under the detected (case a) or inherited (case b) strategy without writing the block.Yes enters Strategy Setup (3.6) before continuing with the original git intent..agents/project.yaml with the git_strategy: block FILLED (strategy: solo-main); a scaffolded project INHERITS it verbatim (the scaffolder patches only project.project_name / project.project_key, and the updater freezes the file via bootstrapOnlyPaths). So the unset case (a) and the inherited case (b) are the two ways a project reaches a real git intent without having confirmed its own flow → the offer fires on first real use — by design (template-trap guard). If project.project_name is set, the strategy is confirmed and NEITHER case fires.Decide the prefix from the dominant change. Use this fixed vocabulary (mixed-changes precedence: feat > fix > refactor > test > docs > chore):
| Prefix | When the dominant change is… |
|---|---|
feat/ | new feature or capability |
fix/ | bug fix |
test/ | adding or updating automated tests (no product code) |
docs/ | docs only |
refactor/ | code change without behaviour change |
chore/ | tooling, deps, housekeeping |
For enterprise and gitflow strategies, also consider release/X.Y.Z and hotfix/X.Y.Z when appropriate.
In a QA repo most work lands as test/, fix/, or chore/ branches. Feature branches (feat/) are rare here — a feat/ in this repo usually means a change to the test framework itself (new fixture, new Page component layer, new reporter).
Issue key extraction (in order):
(?:feat|feature|fix|test|docs|refactor|chore)/([A-Z]+-\d+)-.$ARGUMENTS for [A-Z]+-\d+.Branch name format — read git_strategy.branch_prefixes in .agents/project.yaml (naming_with_key / naming_without_key / precedence); the patterns below are the shipped defaults, used verbatim when the block is absent:
{prefix}/{ISSUE-KEY}-{kebab-slug} (e.g. test/UPEX-123-bulk-assign-coverage).{prefix}/{kebab-slug} (e.g. refactor/split-kata-fixtures).Strategy-specific source branch:
solo-main, github-flow, trunk-based → branch off main.main-integration, gitlab-flow → branch off the integration branch (staging / dev / equivalent).enterprise → branch off the integration branch unless it is a hotfix/*, which branches off main.gitflow → feature/* branches off develop; hotfix/* off main; release/* off develop.sdet → test/{KEY}-* ticket branches + Plus Branches (docs/*/chore/*/fix/*) branch off the ephemeral integration trunk test/<module>-suite; the trunk itself is cut from main on demand when a suite begins. Never stack a ticket on the previous ticket branch. See references/sdet-integration-trunk.md.Always propose the name and ask for OK before git checkout -b. Never create silently.
Group changes by responsibility, not by file type:
| Group | Typical paths |
|---|---|
| Test code | tests/, tests/components/, tests/e2e/, tests/integration/ |
| API schemas | api/schemas/, codegen output, OpenAPI types |
| Test data | tests/data/ |
| Skills/Docs | .agents/skills/, .agents/, AGENTS.md, docs/, README.md |
| Config | package.json, tsconfig.json, playwright.config.ts, lint/format configs |
Test data and fixtures stay with the tests they support. If a test commit ships its own fixture, they belong in the same commit, not in a separate chore: commit.
Conventional commit format:
{type}({ISSUE-KEY}): {description} (e.g. test(UPEX-123): cover bulk-assign empty states).{type}: {description}.! after type/scope and add BREAKING CHANGE: footer.Vocabulary: feat, fix, docs, style, refactor, perf, test, chore, build, ci, revert (full list in references/conventional-commits.md).
Hard rules (apply on every commit):
git add -A or git add . — list explicit paths to avoid leaking secrets (.env, credentials) or unrelated work.Generated with Claude Code, no Co-Authored-By: Claude, no equivalent line. Commits look human-authored. (Critical Reminder #3 in AGENTS.md.)--amend a commit the hook rejected — --amend operates on the previous commit, which destroys context.Present all proposed commits as one block. Wait for OK / modify / reject before executing.
Push command depends on Step 1 output:
git push -u origin {branch}.git push.Protected branches per strategy — the branches the policy gate below guards (union with git_strategy.protected):
solo-main → main is protected.main-integration → both main and the integration branch are protected.gitflow → main and develop are protected.github-flow / trunk-based → main is protected.enterprise → main, integration, and any release/* are protected.sdet → main is protected (only the final suite PR lands, reviewed + green CI). The integration trunk is protected-by-convention but its ticket/Plus PRs are self-merged by the maintainer with no ruleset friction.Policy gate (consult git_strategy.policy.direct_push_to_protected before any direct push to a protected branch):
git_strategy.policy.direct_push_to_protected | Behaviour |
|---|---|
allowed | Standing authorization — push WITHOUT a per-push confirm. The recorded value IS the authorization (stamped by Strategy Setup with the user); asking anyway collapses allowed into confirm and empties the third state. |
confirm (default) | Always ask. Wait for explicit yes. |
forbidden | Refuse the direct push. Redirect to the PR flow (3.4): propose a work branch + gh pr create. |
For confirm, ask: "You are about to push directly to the protected branch {branch} in a {strategy} flow. Confirm?" Wait for explicit yes. Missing or null git_strategy block (fresh scaffold, project never onboarded) → behave as confirm: the safe default is to ask, never to assume standing authorization.
Admin bypass (only when contemplating skipping PR/protection for an urgent change): only when git_strategy.policy.admin_bypass: true may the skill OFFER a bypass — and it MUST re-confirm at runtime BOTH: (a) the operator actually holds admin rights on the repo (ASK — the skill cannot know the GitHub role; admin_bypass is a team POLICY intent, not a capability check), AND (b) the irreversible action itself. If git_strategy.policy.admin_bypass: false, NEVER offer a bypass regardless of the operator's role.
Never pass --force, --force-with-lease, --no-verify, or any history-rewriting flag unless the user explicitly requests it AND the branch is unshared. Document the request in the conversation. (Critical Reminder #6 in AGENTS.md: never rewrite pushed history.)
Base branch picks itself from the strategy:
| Strategy | Default PR base |
|---|---|
solo-main, github-flow, trunk-based | main |
main-integration, gitlab-flow | integration branch (e.g. staging) |
enterprise | integration branch; hotfix/* → main |
gitflow | feature/* → develop; hotfix/* → main; release/* → main (and back-merge to develop) |
sdet | test/{KEY}-* ticket branches + Plus Branches → the integration trunk test/<module>-suite; the single final suite PR → main (after the sync gate). See references/sdet-integration-trunk.md. |
The user can override with --base X in arguments. If overridden, surface it in the confirmation: "PR will target {base} instead of the strategy default {default}."
Title format: {type}({ISSUE-KEY}): {description} — under 70 chars. Without a key: {type}: {description}.
Body — render inline (no template file to read) using the structure in references/pr-templating.md. Substitute placeholders the skill can fill (<<ISSUE_KEY>>, <<SUMMARY>>, <<CHANGES>>, <<TEST_PLAN>>, <<RISK>>). Leave any unfilled placeholder visible so the author can edit it before posting — do not silently drop sections.
For test/* branches in this repo, the PR body should use the structure in references/pr-test-automation.md (project-local template tuned for KATA test-automation PRs). For non-test/* branches use the generic structure in references/pr-templating.md.
Write the rendered body to a tempfile (e.g. $(mktemp)) and pass it via gh pr create --body-file to avoid escaping issues.
Reviewers, labels, draft — see references/pr-templating.md. Never hardcode labels the repo may not have configured; verify with gh label list if uncertain.
Final command shape:
gh pr create \
--title "{title}" \
--body-file {tmpfile} \
--base {base} \
[--reviewer {users}] \
[--label {labels}] \
[--draft]
Stop at PR creation. Merging is the user's explicit next step. Never auto-merge. Surface: "Review the PR. Once approved, merge via the GitHub UI or run gh pr merge {number} --squash --delete-branch."
Optional pre-PR adversarial gate — when the diff exceeds the 400-line cognitive review budget OR touches shared scaffolding (KATA base classes, fixtures, OpenAPI schemas), surface /judgment-day as an optional pre-PR review: "Diff is large / touches shared scaffolding. Want to run /judgment-day before opening the PR?". Two blind judges review the diff in parallel; only approves when both agree. See .agents/skills/judgment-day/SKILL.md. Never invoked automatically — user opts in.
Conflicts are diagnosed before they are resolved. The user is rarely in a hurry; a wrong fix here costs hours.
Run git status, git diff --check, and inspect .git/MERGE_HEAD / REBASE_HEAD to classify the situation, then follow the matching playbook in references/conflict-resolution.md:
For every type, the playbook follows the same shape:
--abort of an unfinished merge with uncommitted work) silently.git status, git log --oneline -3).When in doubt, abort safely (git merge --abort, git rebase --abort, git cherry-pick --abort) rather than push forward. Aborting always wins over guessing.
The first five operations adapt to a strategy that already exists. Strategy Setup is the operation that establishes one: it resolves (or asks) the strategy, captures the merge + hotfix + protection-policy decisions the other operations depend on, materializes the long-lived branches the strategy needs, and writes the git_strategy: block in .agents/project.yaml. It is the only operation that creates branches and writes the strategy definition.
When it runs
git_strategy.strategy is null (or the block is absent) with a fresh-looking repo, OR git_strategy.strategy is non-null but project.project_name is null (inherited template — not onboarded). The skill OFFERS to run setup. It never auto-runs.Six-step flow (mechanics live in references/strategy-setup.md — do not inline them here):
--force); set up local tracking. Full materialization table + sync mechanics in references/strategy-setup.md.git_strategy: block in .agents/project.yaml (the structured source of truth) with the fields that apply to the resolved strategy, preserving the rest of the file. NEVER write a separate file. Do NOT render a prose runbook anywhere — the operational HOW lives in this skill's references (branching-strategies.md catalogue + sdet-integration-trunk.md), read on demand. Per-strategy field values in references/branching-strategies.md → "git_strategy field rules (per strategy)".Decision questionnaire (defaults first; each gated on the resolved strategy)
| Q | Question | Applies to | Options (default first) | Drives |
|---|---|---|---|---|
| Q1 | Promotion method, integration → production | strategies with an integration branch (main-integration, gitlab-flow, enterprise; gitflow = develop → main) | Fast-forward only / Merge commit (--no-ff) / Squash | release runbook + whether branches stay byte-identical |
| Q2 | Merge method, work-branch → integration (or → trunk) | all multi-branch strategies | Merge commit (--no-ff) / Squash / Rebase + merge | how integration history accrues |
| Q3 | Hotfix policy | strategies with a production branch distinct from where work lands | Branch off production → PR to production → back-merge to integration same day / Always via integration / No policy | hotfix runbook + invariant maintenance |
| Q4 | Protected-branch bypass policy | ALL strategies | direct_push_to_protected: forbidden / confirm / allowed (default per strategy — solo-main=allowed, multi-branch=forbidden, sdet=confirm) · admin_bypass: may a repo admin bypass PR/protection for urgent changes? (default false) · require_pr_reviews: min approvals (default null / strategy-appropriate) | how strictly protected branches are guarded (Push op 3.3) → sets git_strategy.policy.* |
Q1/Q2/Q3 defaults are what the main-integration worked example chose; they are DEFAULTS, not hardcoded. The user can override any of them. Single-branch strategies (solo-main, github-flow, trunk-based) answer NONE of Q1/Q2/Q3 — they have no integration branch and no distinct production branch. Q4 applies to every strategy (even single-branch ones — a solo main is still protected) and writes git_strategy.policy.*; per-strategy Q4 defaults live in references/branching-strategies.md → "git_strategy field rules (per strategy)".
The git_strategy block fields (write only the ones that apply; leave decisions.* at n/a for any decision the strategy doesn't use):
git_strategy:
strategy: VALUE # one of the eight slugs
branches:
integration: NAME # or null
decisions:
promote_method: ff-only|merge-commit|squash|n/a
feature_merge: merge-commit|squash|rebase-merge|n/a
hotfix_policy: branch-off-prod-backmerge|via-integration|none|n/a
policy: # Q4 — applies to ALL strategies
direct_push_to_protected: forbidden|confirm|allowed
admin_bypass: true|false # team POLICY intent, not enforcement
require_pr_reviews: null|0|N
Non-negotiables
--force (not --force-with-lease either) during a setup sync. Sync only on a true fast-forward; if the integration/production pair has diverged both ways → STOP and hand to conflict resolution (3.5).git checkout -b / git branch.AGENTS.md).Pointers (do not inline mechanics here)
references/strategy-setup.md — full questionnaire detail (Q1-Q4), the per-strategy materialization table, sync mechanics, persist sequence, report format.references/branching-strategies.md → "git_strategy field rules (per strategy)" — the per-strategy field values written into the git_strategy: block of .agents/project.yaml (strategy / branches / decisions / policy).When a planned change estimates > 400 changed lines (additions + deletions), the work should be split. The 400-line cognitive review budget is borrowed from industry research (SmartBear, Cisco code-review studies); above it, defect detection drops sharply.
There are three options:
stacked-to-main — 2 to 4 small PRs, each branched off the strategy's default base. PRs depend on previous merges. The base always works between merges. Best for linearly decomposable work.feature-branch-chain — one long-lived integration branch; child PRs merge into it; one final PR merges it to the strategy's default base. Best for changes with shared scaffolding (new types, new schemas) that would break partial merges.size-exception — for mechanical diffs (mass renames, formatter sweeps, generated code, vendor updates). Requires explicit user override and a Why size-exception: line in the PR body.Walk the chained-PR decision tree inline (see references/branching-strategies.md § Chained-PR decision tree). The decision picks one of: single-pr, stacked-to-main, feature-branch-chain, size-exception. Once decided, execute the resulting branch plan from this skill.
The branch plan that comes out of the decision is the contract for execution. If the implementation diverges (the actual diff is larger than the estimate), re-invoke the decision — do not silently up-budget the existing strategy.
{{PROJECT_KEY}} — issue prefix for branch naming (e.g. UPEX-123). Resolves from .agents/project.yaml.{{ATLASSIAN_URL}} — base URL for the Traceability section in PR bodies. Resolves from .agents/project.yaml:atlassian_url..agents/project.yaml will lack these. Fall back to a generic {prefix}/{slug} and surface a one-line warning: clone the full boilerplate (the foundation files ship with the repo).| Situation | Hand off to |
|---|---|
| Strategic split of a large change | Step 4 (inline decision tree in this skill) |
| Pre-sprint AC refinement on backlog Stories | /shift-left-testing |
| In-sprint manual QA per ticket | /sprint-testing |
| Test case authoring + ROI in TMS | /test-documentation |
| KATA-compliant automated test authoring | /test-automation |
| Regression suite execution + GO/NO-GO | /regression-testing |
| Atlassian (Jira) operations triggered by a commit / PR | /acli |
| First-time orientation | /agentic-qa-onboard |
policy: records INTENT, not enforcement. Reconcile it by RUNNING bun run git:policy verify (Step 1b) at the first push / PR / merge intent, then --stamp when clean. Never perform the protection queries by hand, and never state what the remote requires from a declared reading. git:policy apply is a dry run until --yes, and refuses to remove a guard, lower the approval bar, turn off code-owner review, or widen the merge methods unless --allow-loosening is passed for that specific give-up.
1c. strategy: solo-main is the shipped DEFAULT, not evidence of a decision. meta.strategy_source tells them apart: inherited means nobody chose. On a repo whose project.project_name is set and whose strategy_source is still inherited, OFFER Strategy Setup and say what the default costs (no integration branch, no promotion path, no review gate). Strategy Setup stamps chosen; nothing else may.AGENTS.md.)AGENTS.md.)--no-verify unless the user explicitly authorises it AND the branch is unshared. (Critical Reminder #6 in AGENTS.md.)git add -A / git add . — always list explicit paths.gh CLI is the PR transport. If gh is missing or unauthenticated (gh auth status fails), stop and surface the blocker. Do not pretend a PR was opened.git_strategy: block of .agents/project.yaml. The next invocation re-reads the block rather than asking again.git restore ., git checkout -- ., git reset --hard, untargeted git stash, or git clean -f — concurrent agent sessions may share this working tree without worktrees. Discard only explicit paths this session modified; if file ownership is unclear, stop and ask the user. (Critical Rule #15 in AGENTS.md; see also references/worktrees.md for true isolation.)main or any shared branch — destroys teammates' history and is unrecoverable once others have pulled..env contents, or auth tokens — git history is forever; a single commit leaks the secret permanently.main without explicit user confirmation (Critical Rule #5). Strategy-driven protection applies to every protected branch, not just main.--no-verify to "ship faster" — hooks exist to catch the bug you didn't notice. Fix the hook failure and create a new commit.git restore ., git checkout -- ., git reset --hard, untargeted git stash, git clean -f) — when multiple agent sessions share one working tree without worktrees, a global discard destroys another session's uncommitted work with no recovery. Target only the explicit paths this session modified; unclear ownership → stop and ask the user (Critical Rule #15).When work needs to be isolated from in-progress changes on the current branch — a second
AI session running in parallel, a hotfix while a feature is open, or unrelated WIP you do
not want to mix — use a git worktree (a second working directory on its own branch,
sharing one .git). Two paths:
git worktree add ../dir -b feat/x main → work →
git worktree remove / prune.EnterWorktree moves the session into a fresh
worktree under .claude/worktrees/; ExitWorktree (keep/remove) leaves it. Other
coding agents lack this — they use the manual path.Key gotcha: a fresh worktree contains only the tracked files of its base — untracked
WIP does not teleport, so mv it in (or commit first). Keep the primary tree's
git status clean. Full lifecycle, multi-session safety rules, and the decision guide:
references/worktrees.md.
git_strategy: block in .agents/project.yaml, inferred from layout, or asked) and persisted to that block if newly chosen.git add -A / --force / --no-verify used unless explicitly authorised.git restore . / git checkout -- . / git reset --hard / untargeted git stash / git clean); any discard targeted explicit session-owned paths only.git status clean, git log sensible).--force), and a diverged pair was handed to conflict resolution rather than forced.git_strategy: block in .agents/project.yaml was written in place with the fields that apply to the resolved strategy (strategy / branches / decisions / policy / protected / branch_prefixes / description / meta), preserving the rest of the file.| File | When to read |
|---|---|
references/branching-strategies.md | Full catalogue of the 8 strategies + detection signals + trade-offs + chained-PR decision tree + per-strategy git_strategy field rules (the block in .agents/project.yaml). Read when resolving strategy or planning a chain. |
references/strategy-setup.md | Strategy Setup (3.6) mechanics: decision questionnaire detail, per-strategy materialization table, ff-sync mechanics (never force), persist sequence, report format. Read when running or re-running Strategy Setup. |
references/sdet-integration-trunk.md | sdet strategy runbook: per-ticket loop, ephemeral integration trunk, local double-env gate, Sanity CI + CI-fallback clause, Plus Branches, sync gate, final PR, TC lifecycle. Read when running an sdet test-automation suite. |
references/conventional-commits.md | Full type vocabulary, scope rules, breaking-change syntax, mixed-changes precedence. Read when proposing commits. |
references/pr-templating.md | PR body template, placeholder rules, label / reviewer / draft conventions, multi-strategy base-branch table. Read when opening a PR. |
references/conflict-resolution.md | Per-conflict-type playbooks (merge / rebase / push-rejected / detached-HEAD / stash / unrelated histories / hook rejection). Read when Step 3.5 fires. |
references/worktrees.md | Git worktrees for isolated/parallel work — manual git + Claude Code EnterWorktree/ExitWorktree, the untracked-files gotcha, multi-session safety, cleanup, decision guide. Read when isolating work or running parallel sessions. |
Read references on demand — do not load them all upfront. Each file is self-contained.
Frequently asked questions
This skill is the project's single entry point for everything that happens on the version-control layer: creating branches, writing commits, pushing safely, opening pull requests, resolving conflicts, and planning chained / stacked PRs when a change outgrows the review budget.
The source record exposes this install command: npx skills add https://github.com/upex-galaxy/agentic-qa-boilerplate --skill ".agents/skills/git-flow-master". Inspect the command and pinned source before running it.
The pinned source record declares support for: claude code.
Static rules flagged read-files, exec-script, write-files in the source; the page lists the matching lines and excerpts.
Alternatives
NVIDIA/skills
Autonomous NeMo-RL research agent workflow for directed hypothesis testing and open-ended discovery. Guides agents through the full experiment lifecycle: understanding recipes and environments, wiring RL or NeMo-gym runs, launching reproducible baselines and iterations, analyzing results, preserving human oversight, and using git plus TSV logs as the research ledger. Do NOT use for: bug fixes, code review, documentation, refactoring, dependency updates, or single-file changes.
oaslananka/kicad-mcp-pro
Use this skill for GitHub Copilot pull request and code reviews in oaslananka/kicad-mcp-pro. Review Python MCP server changes, KiCad adapter and tool-contract changes, tests, npm/package wrappers, Tauri/Rust desktop code, GitHub Actions, security controls, documentation, generated metadata, and compatibility/release surfaces. Use it whenever reviewing a PR or diff in this repository, especially changes under src/, tests/, packages/, src-tauri/, .github/workflows/, or public MCP metadata/configur
ArabelaTso/Skills-4-SE
Generates clear and structured pull request descriptions from code changes. Use when Claude needs to: (1) Create PR descriptions from git diffs or code changes, (2) Summarize what changed and why, (3) Document breaking changes with migration guides, (4) Add technical details and design decisions, (5) Provide testing instructions, (6) Enhance descriptions with security, performance, and architecture notes, (7) Document dependency changes. Takes code changes as input, outputs comprehensive PR desc
PramodDutta/qaskills
Master code review best practices with constructive feedback patterns, quality assurance standards, review checklists, security considerations, and collaborative improvement techniques for high-quality software delivery.