Problem
What problem this solves
Release work often fragments across separate commands, and a green build or pushed commit can be mistaken for proof that the product works live.
Skill Detail
Run the whole release confidence loop instead of stitching checks, ship, prod, browser proof, and verification by hand.
A release orchestration skill for moving work through technical checks, bounded shipping, deployment readiness, post-deploy evidence, final verification, and optional changelog routing.
Problem
Release work often fragments across separate commands, and a green build or pushed commit can be mistaken for proof that the product works live.
Outcome
You get a stricter release loop that names each gate, routes the right proof skill, and keeps unproven behavior visible.
Why It Matters
This skill protects the last mile of shipping. It turns release into evidence gathering instead of a vibe check after git push.
Arguments
These are the argument switches documented for this skill. For the general rule behind skill arguments, read the skill modes tutorial.
no argumentDeploys the current bounded release scope through checks, ship, deployment truth, evidence routing, and verification.
Stops at the first failing gate instead of overclaiming release readiness.
skip-checkSkips the pre-ship sg-check phase only.
The report must preserve the validation gap; ship, prod, evidence, and verify gates still apply.
--preview / --prodBiases the deployment and evidence target toward preview/staging or production.
Production proof stays read-only or reversible unless a risky action is explicitly approved.
no-changelogSkips optional release-note routing after verification.
Does not weaken the deploy, proof, or verification gates.
Related Skills
Run the standard technical checks and fix the obvious issues before you pretend the work is done.
A practical quality gate for typecheck, lint, build, and related technical validation in the current project.
Open skill pageCommit and push quickly when the work is actually ready, instead of stretching closure into another vague step.
A shipping skill for moving finished work through the final commit-and-push path and recording the shipping result when a chantier spec is in scope.
Open skill pageCheck whether production is actually healthy after a push instead of assuming the deploy tells the truth.
A production verification skill for deployment status, logs, and live health checks after release.
Open skill pageOpen a URL in a real browser and verify one observable non-auth objective.
A general browser verification skill for checking public UI, previews, production pages, visible assertions, screenshots, console messages, and network signals without turning every page check into auth debugging or manual QA.
Open skill pageDebug a broken auth flow in a real browser before you start guessing from static code alone.
A browser-level auth diagnosis skill for reproducing login failures, reading local Clerk/Google/Convex/Flutter references, and isolating the exact break point in the flow.
Open skill pageGuide the human through the real user flow, then turn the result into test evidence and actionable bugs.
A manual QA skill for creating guided test campaigns, capturing structured outcomes, and preserving bug history after implementation.
Open skill pageCheck whether the work really satisfies the user story, not just whether the code compiles.
A verification skill for standard readiness or an explicit excellence-focused second pass beyond the task's acceptance criteria.
Open skill pageTurn recent git history into a human-readable changelog instead of leaving progress trapped in commits.
A changelog generation skill for summarizing meaningful project changes in a cleaner public format.
Open skill pageGo Deeper
Use the public catalog for education and workflow selection. Move to the docs and GitHub when you want the operator-grade execution details behind the skill system.