AgentStack
SKILL verified MIT Self-run

Finishing A Development Branch

skill-gustavo-meilus-superpipelines-finishing-a-development-branch · by gustavo-meilus

Structured integration protocol that enforces a test-verification gate and presents branch disposition options (merge, PR, keep, or discard). Use when implementation is complete, all tests pass, and an integration decision for the development branch is pending.

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

Install

$ agentstack add skill-gustavo-meilus-superpipelines-finishing-a-development-branch

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

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

About

Finishing a Development Branch — Integration Protocol

> Ensures work is integrated or preserved according to explicit user choice. A mandatory test verification gate is enforced before any options are presented, preventing promotion of broken or unverified code to the base branch.

Finishing a Development Branch ensures that work is integrated or preserved according to the user's explicit choice. It enforces a mandatory test verification gate before any options are presented, preventing the promotion of broken or unverified code to the base branch.

The target for integration, typically main or master. An isolated directory for development; must be cleaned after integration. Option 2, which involves pushing the branch and creating a Pull Request via gh pr create.

The Completion Protocol

1. VERIFY TESTS (THE GATE)

  • The project's primary test suite is run (e.g., npm test, pytest).
  • If tests fail, STOP. Integration options cannot be presented until all tests are green.

2. DETERMINE BASE BRANCH

  • The split point is identified (e.g., git merge-base HEAD main).
  • The base branch is confirmed with the user if ambiguity exists.

3. PRESENT STRUCTURED OPTIONS

  • Exactly these four options are presented without modification:
  1. Merge back to [base] locally
  2. Push and create a Pull Request
  3. Keep the branch as-is (Handle later)
  4. Discard this work

4. EXECUTE CHOICE

  • Option 1: Base is checked out, latest is pulled, branch is merged, tests are re-verified, and the feature branch is deleted.
  • Option 2: Branch is pushed to origin and a PR is created using the gh CLI.
  • Option 4: Explicit typed confirmation ("discard") is required before destructive deletion.

5. CLEANUP

  • For Options 1, 2, and 4: The associated git worktree is removed to maintain repository hygiene.
  • NEVER proceed with integration if the verification gate fails.
  • NEVER cleanup the worktree for Option 3 (Keep as-is).
  • ALWAYS re-verify tests on the base branch after a local merge (Option 1).
  • ALWAYS obtain "discard" confirmation before executing Option 4.

Completion Patterns

| Option | Merge | Push | Cleanup Branch | Cleanup Worktree | | :--- | :--- | :--- | :--- | :--- | | 1. Merge Locally | ✓ | - | ✓ | ✓ | | 2. Create PR | - | ✓ | - | ✓ | | 3. Keep As-Is | - | - | - | - | | 4. Discard | - | - | ✓ (force) | ✓ |

Red Flags — STOP

  • "I'll merge now and fix the tests later." → STOP. Integration of failing code is a SEV-0 failure.
  • "What should I do next?" → STOP. Present the four structured options defined in the protocol.
  • "Deleting worktree automatically." → STOP. Option 3 requires worktree preservation.

Rationalization Table

| Excuse | Reality | | :--- | :--- | | "PR handles testing anyway." | Local verification prevents broken builds and reduces CI overhead. | | "It's just a one-line change." | One-line changes are the leading cause of "it worked in my head" regressions. | | "Discarding is faster than cleanup." | Unconfirmed discards cause irreversible data loss. |

Reference Files

  • sk-worktree-safety/SKILL.md — Worktree management.
  • verification-before-completion/SKILL.md — Final evidence gate.
  • running-a-pipeline/SKILL.md — Integration point for pipeline completion.

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.