What problem does it solve? Releasing a plugin involves many error-prone manual steps: running typechecks and tests, bumping the version, rebuilding artifacts, and crafting a consistent commit. This Skill orchestrates the entire release workflow for vercel-plugin so nothing is skipped. ## Core Features & Use Cases - Pre-flight Quality Gates: Runs typecheck, tests, and skill/manifest validation in parallel and stops the release if any gate fails. - Semver Version Management: Reads and bumps the version in .plugin/plugin.json (the single source of truth) with guidance on patch vs. minor vs. major. - Artifact Rebuild & Release Commit: Recompiles hooks via bun run build, regenerates the skill manifest, then stages, commits with the conventional ; bump to X.Y.Z message, and pushes. - Use Case: You finished adding a new hook to vercel-plugin and want to ship it. Invoke the release workflow to validate everything, bump the minor version, rebuild, and push to main in one guided flow. ## Quick Start Ask the assistant to release vercel-plugin with a patch version bump and push the result to main.