All SkillsGet Started Free
GitHub Release
Guides IA through releasing a new version of a GitHub library end-to-end. Handles SemVer versioning and Keep a Changelog formatting automatically.
MCP get_skill({ skillId: "github-release-935f8da1" })Use this skill with your agent
Create a free account and connect via MCP
# GitHub Release Skill This skill automates the full release workflow for a single-package GitHub repository, from analysis through changelog authoring and PR creation. It relies exclusively on `gh` (GitHub CLI) and `git` no other tools needed. Steps 1 - 4 are **read-only reconnaissance** nothing is written to the repo until Step 5, once the version number is confirmed. ## When to Use This Skill Use this skill whenever the user wants to cut a new release, publish a new version, bump a version, create a release branch, generate a changelog, or open a release PR on a GitHub repository. Trigger even if the user says something casual like "let's ship a new version" or "time to release". --- ## Prerequisites Examples below include both Bash and PowerShell variants; Windows users should prefer the PowerShell blocks. Before starting, verify the environment: ```bash gh auth status # must be authenticated gh repo view --json nameWithOwner # must be inside a GitHub repo git status # working tree should be clean ``` If any check fails, stop and tell the user what to fix before continuing. Then ask the user one question: > *"Which directory contains your library's public-facing source code? > (e.g. `src/`, `lib/`, `pkg/` - used to focus the diff on what consumers > actually see. Press Enter to scan the whole repo.)"* Store the answer as `PUBLIC_PATH`. If empty, `PUBLIC_PATH` is `.` (repo root). Exclude these paths from all diffs regardless: `tests/`, `test/`, `spec/`, `__tests__/`, `docs/`, `*.lock`, `*-lock.json`, `*.sum`, generated files (files with a "do not edit" header comment), and build artefacts. --- ## The 9-Step Release Workflow Work through every step in order. Show the user what command you're about to run and its output. Pause and ask for confirmation only when explicitly noted.
#github-copilot#project#managementgitgh-cli