release
This Claude Code skill automates releasing new versions of the Vellum Assistant by dispatching GitHub Actions workflows. It accepts an optional argument specifying the version bump type (patch, minor, or major, defaulting to patch), validates the input, triggers the Release workflow on the main branch, and provides confirmation that the automated pipeline has started, which handles version bumping, package publishing, and macOS notarization over approximately 15-20 minutes.
git clone --depth 1 https://github.com/vellum-ai/vellum-assistant /tmp/release && cp -r /tmp/release/.claude/skills/release ~/.claude/skills/releaseSKILL.md
Cut a new release. Releases are a **two-step** process: 1. **Branch cut → staging bake**: `create-release-branch.yml` computes the version from the bump type, deletes any stale `release/v<X.Y.Z>` branch, cuts a fresh one from `main` HEAD with the version-bump commit, and pushes it. That push triggers a `Release` run on the branch which is a **staging** deploy (push-triggered and main-dispatched `Release` runs are always staging). 2. **Production**: dispatching `release.yml` **on the `release/v<X.Y.Z>` branch** runs the full production release — tag, GitHub Release, DMG sign/notarize/publish, npm packages, Docker Hub images, iOS TestFlight, platform dependency bump, and the merge-back of the release branch to `main`. The scheduled Tue/Thu 7:52am ET cut performs step 1 automatically; a human performs step 2 after the staging bake is green. A `release/v<X.Y.Z>` branch with no corresponding GitHub Release means a cut was never promoted. Re-running step 1 refreshes it from current `main`. The user may pass `$ARGUMENTS` as the bump type for step 1: `patch`, `minor`, `major`, or `hotfix` (patch cut from the latest release tag's commit instead of `main`, pushed `[skip ci]` for manual cherry-picks). Default to `patch`. ## Steps ### 1. Pull latest main and show the payload ```bash git checkout main && git pull git describe --tags --abbrev=0 git log --oneline "$(git describe --tags --abbrev=0)"..origin/main | head -20 ``` Confirm with the user before proceeding unless they already asked for the release explicitly. ### 2. Cut the release branch (staging bake) ```bash gh workflow run create-release-branch.yml \ --repo vellum-ai/vellum-assistant \ --ref main \ --field bump=<patch|minor|major|hotfix> ``` Then wait for the branch cut and find the staging `Release` run its push triggered: ```bash gh run list --workflow="Create Release Branch" --limit 1 gh run list --workflow=Release --branch "release/v<X.Y.Z>" --limit 1 ``` The version appears in the branch name; the staging run takes ~15-20 minutes. **Wait for it to succeed** — it is the CI bake for the exact release payload. If it fails, fix `main` and re-run this step (it recuts the branch from `main` HEAD). ### 3. Dispatch the production release ```bash gh workflow run release.yml \ --repo vellum-ai/vellum-assistant \ --ref "release/v<X.Y.Z>" ``` The only dispatch input is the optional `slack_user_id` (`--field slack_user_id=U…`) for the release notification; omit it when unknown. ### 4. Verify The production run takes ~20 minutes. When it completes: ```bash gh release list --limit 1 # v<X.Y.Z> should be Latest git fetch --tags && git tag -l "v<X.Y.Z>" git log --oneline origin/main -1 # merge-back commit "Release v<X.Y.Z>" ``` If the merge-back to main failed, the run's Slack notification includes the manual-merge command. ### 5. Report Output: - The version number and a link to the production run - Confirmation that the GitHub Release, tag, and merge-back all landed
>
>
>
Check Vellum Assistant architecture and package boundaries. Use when editing imports, moving code, adding endpoints, touching assistant/gateway/client/skill boundaries, or reviewing architecture-sensitive changes.
Review Vellum Assistant code changes for correctness, repo-specific quality rules, security risks, and missing validation. Use when reviewing diffs, preparing a PR, finishing implementation work, or when the user asks for a code review, quality pass, or pre-merge check in this repository.
Guide Vellum Assistant feature flag changes and rollout hygiene. Use when adding, editing, reviewing, or documenting assistant feature flags, rollout-gated behavior, or platform flag follow-up work.
Validate Vellum Assistant database and workspace migrations. Use when adding, editing, reviewing, or testing migrations, release-note migrations, persisted schemas, workspace file formats, or data backfills.
Prepare Vellum Assistant branches for review by checking git hygiene, PR scope, tests, docs, migrations, Linear linking, and companion repo needs. Use before creating a pull request, splitting work into PRs, or asking whether a branch is ready.