ship

SkillDev tools

Ship the current branch — push, squash-merge to main via PR, tag, and clean up. Use when ready to merge and release.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the ship skill

What this skill tells your AI

The instructions your AI receives, as published by quisapp/flutter_contacts in .claude/skills/ship/SKILL.md and read by ahel’s review.

Ship the current branch to main.

Prerequisites

  • Must NOT be on main branch already. If on main, abort with a message.
  • Working tree should be clean. If not, warn the user.

Steps

  1. Get the current branch name.
  2. Push the branch to origin: git push -u origin <branch>.
  3. Create a PR targeting main using gh pr create. Use the squashed commit subjects as the PR body.
  4. Squash-merge the PR: gh pr merge --squash --delete-branch.
  5. Checkout main and pull: git checkout main && git pull.
  6. Delete the local branch if it still exists: git branch -d <branch>.
  7. Tag (auto-detect):
    • Read the version from pubspec.yaml and prefix with v (e.g. v2.0.1).
    • If that tag already exists (git tag -l <tag>), skip tagging.
    • Otherwise, create and push the tag: git tag -a <tag> -m "<tag>" && git push origin <tag>.
  8. Confirm completion with a summary (mention whether a tag was created or skipped).

Signals

GitHub stars
110
Forks
194
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
ship-quisapp
Source
github.com/quisapp/flutter_contacts