agentsclimarketplace

Merge and release

Skill synaptiai/synapti-marketplace/plugins/flow/skills/merge-and-release

Reference document describing merge prerequisites (approval, CI checks, mergeable, conversations resolved, stale approval), release versioning (semantic semver), and changelog generation. Explains why Tier 3 confirmation is structural: merge and release cost is borne by downstream people. Reference only (`disable-model-invocation: true`); consumed by `/flow:merge` and `/flow:release`.From its SKILL.md

Install
npx -y skills add synaptiai/synapti-marketplace --skill merge-and-release

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

6.7 KB, ~1.4k tokens by cl100k_base, as published. Nobody here has run it

Merge and Release

Reference document for merge and release policy. The executable bash lives in plugins/flow/commands/merge.md and plugins/flow/commands/release.md. This skill describes what those commands enforce and why.

Both merge and release are Tier 3 — they always require explicit human confirmation, even in autonomous mode. This is non-negotiable.

Iron Law

MERGE IS IRREVERSIBLE IN PRACTICE. Treat every merge as permanent. Every prerequisite must be verified with fresh evidence, not memory.

Reverting a merge is technically possible in git but disruptive in practice — downstream branches rebase off the merge, deploys propagate it, and history grows confusing. Prevention is the only reliable strategy. The Tier 3 confirmation requirement is the structural expression of that fact.

Merge Prerequisites — The Five-Check Gate

Before a merge proceeds, all five checks must pass. The runnable verification is in plugins/flow/commands/merge.md Phase 1.

#CheckRequirementWhat it protects against
1ApprovalAt least one approval, no outstanding requested changesMerging code that no human has signed off on
2CI ChecksAll status checks pass (statusCheckRollup all success)Merging code that fails the project's automated tests
3MergeableNo merge conflicts (mergeable == "MERGEABLE")Merging a PR whose content cannot cleanly land on the base branch
4ConversationsAll review threads resolved (unresolved count == 0)Closing reviewer concerns by ignoring them
5Stale approvalNo commits after the last approval timestampMerging code that was approved before the latest changes existed

The conversation-resolution check requires GitHub's GraphQL API (the REST reviewThreads field is incomplete). The exact GraphQL query used is in plugins/flow/commands/merge.md.

Stop Conditions — Non-Negotiable

When any of these conditions is detected, the command stops without asking "merge anyway?":

  • ANY of the five prerequisites fails
  • Stale approval detected — request re-review, do not merge
  • Unresolved conversations > 0 — resolve first, do not merge
  • Finding-ledger check fails (see pr-lifecycle skill for details)

There is no "override the gate" option in autonomous mode. Overrides require the human user to take the action themselves outside the command.

Stale Approval Detection

A "stale" approval is one that predates the most recent commit on the PR. The check compares:

  • The latest submittedAt timestamp among reviews where state == "APPROVED"
  • The committedDate of the most recent commit on the PR

If commits exist after the last approval, the command warns: "Approval may be stale." Stale approvals are a stop condition because the approver has not actually seen what is being merged.

Merge Execution

After all prerequisites pass, the command displays a Merge Assessment table and explicitly asks the user to confirm. Only after a clear "yes" does the merge proceed:

  • Strategy is read from settings (squash | merge | rebase, default squash)
  • Branch deletion is read from settings (default true)
  • The gh pr merge invocation is in plugins/flow/commands/merge.md Phase 3

The user-visible assessment lists every prerequisite's status, the chosen strategy, and the branch-delete decision so the human can verify before approving.

Release Process

Releases follow the same Tier 3 confirmation discipline as merges. The runnable bash is in plugins/flow/commands/release.md.

Version Calculation

Bump typeFormatWhen to use
patch0.0.X+1Bug fixes only, no behavior change
minor0.X+1.0New features, no breaking changes
majorX+1.0.0Breaking changes

The first release defaults to v1.0.0 if no prior tag exists.

Changelog Generation

The changelog is built from merged PRs since the last release tag, categorized by conventional commit prefix:

  • Featuresfeat: PRs
  • Bug Fixesfix: PRs
  • Other Changesdocs:, chore:, etc.

Each entry includes the PR number and author. A "Full Changelog" link compares the previous tag to the new one.

Release Execution

After the changelog and version are displayed, the command asks the user to confirm. Only after explicit confirmation:

  1. Create annotated tag: git tag -a "$TAG" -m "Release $TAG"
  2. Push tag: git push origin "$TAG"
  3. Create GitHub release: gh release create "$TAG" --title "$TAG" --notes "$CHANGELOG"

These three operations together are the release. They are not split across multiple agent turns — the user confirms once and the command performs them in sequence.

Post-Merge / Post-Release

After either operation completes, the command verifies state:

  • Merge: gh pr view $PR_NUM --json state should return MERGED
  • Release: gh release view $TAG should succeed

The command then suggests cleanup: switch to the default branch, pull latest, and (for releases) update plugin version files if applicable.

Why Tier 3 Is Structural, Not Optional

Merges and releases produce visible, durable artifacts: a merge commit on main, a published tag, a GitHub release page that subscribers may receive notifications for. The cost of an unwanted merge or release is paid by everyone downstream — other developers rebasing, users seeing a notification for a release that was a mistake, package managers fetching the new version.

Tier 3 is not gatekeeping for its own sake. It is the structural expression of: the cost of an unwanted action is borne by people who are not in this conversation. The human in the loop is the only person who can speak for those downstream people.

Where the Bash Lives

This skill is reference-only. The runnable implementations are:

  • Merge prerequisites + execution: plugins/flow/commands/merge.md
  • Release version calculation + tagging + GitHub release creation: plugins/flow/commands/release.md

When the policy needs to evolve — a new prerequisite, a new release strategy, a different versioning scheme — update the command and update this reference together. The bash is the runtime; this document is the rationale.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 0 of the 12 instructions most ship operate skills give in ~1.4k tokens

Counted across 779 of the 1,178 authors here whose files we hold, read 2026-08-07

  • Document a rollback plan before deploymentin 41 of 779, across 22 files
  • Update the changelogin 21 of 779, across 19 files
  • Run the test suitein 20 of 779
  • Create an annotated git tagin 20 of 779
  • Clean up feature flags after full rolloutin 18 of 779, across 10 files
  • Verify deployment health after launchin 18 of 779, across 10 files
  • Test both feature flag statesin 17 of 779, across 9 files
  • Verify the working tree is cleanin 17 of 779
  • Make database migrations backward-compatiblein 16 of 779, across 8 files
  • Set up error monitoring before launchin 15 of 779, across 7 files
  • Monitor metrics at each rollout stagein 14 of 779, across 5 files
  • Create a GitHub releasein 14 of 779

Said here and by no other author read

  • Require explicit human confirmation for every merge and release
  • Treat every merge as permanent and irreversible
  • Verify all five merge prerequisites with fresh evidence
  • Require at least one approval with no outstanding changes
  • Ensure all status checks pass
  • Ensure no merge conflicts exist

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.