What problem does it solve? Shipping a project involves more than a successful build: version mismatches, leaked credentials in artifacts, missing rollback plans, and untested installs cause most release failures. This Skill runs the full build-package-test-publish lifecycle with enforced privacy audits, smoke tests, and rollback strategies so releases are verifiable before they go live. ## Core Features & Use Cases - Channel-specific release strategies: Separate workflows for Web (Vercel/Netlify deploy), Desktop (Electron packaging with signing/notarization), and CLI (npm publish) projects. - Privacy and security audit: Greps build artifacts for developer paths, API keys, database files, and credentials before packaging, and blocks the release on any leak. - Quality gates and scoring: An 8-dimension, 16-point quality rubric (build integrity, smoke test, version consistency, rollback plan, etc.) with a ship threshold of 12 points. - Use Case: After finishing a Vite web app, invoke the skill to bump the version, run a clean build, scan dist/ for leaked secrets, deploy to Vercel, smoke test the live URL, and create a matching git tag and GitHub Release. ## Quick Start Ask the agent to release the current project to your chosen channel, for example: run /release-builder web to build, audit, and deploy the app to production.