一键导入
github-release-management
Comprehensive GitHub release management using standard Git and GitHub CLI (gh) commands for versioning, testing, and deployment.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Comprehensive GitHub release management using standard Git and GitHub CLI (gh) commands for versioning, testing, and deployment.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Develop and contribute to the Plexium codebase — package structure, build commands, test patterns, architecture layers
Operate within a Plexium-powered repository — read wiki before work, update wiki after changes, follow ownership rules, use retrieval
Use when the user wants to install or verify the Plexium CLI from inside Codex.
Use when the user wants to initialize Plexium, set up the current repository for Codex, verify readiness, or connect Plexium's MCP server in Codex.
Use when the user wants to install Plexium, set up the current repo for Claude Code, verify readiness, or query the Plexium wiki from Claude Code.
Use when the user wants to search or retrieve information from the Plexium wiki in the current repository.
| name | github-release-management |
| version | 2.0.0 |
| description | Comprehensive GitHub release management using standard Git and GitHub CLI (gh) commands for versioning, testing, and deployment. |
| category | github |
| tags | ["release","deployment","versioning","automation","ci-cd","gh-cli"] |
Manage software releases, changelogs, and version tags using standard Git and the GitHub CLI (gh).
# Tag the current commit
git tag v2.0.0
git push origin v2.0.0
# Create a GitHub release with auto-generated release notes
gh release create v2.0.0 --generate-notes --title "Release v2.0.0"
gh release create v2.0.1 --draft --title "v2.0.1" --notes "Draft notes here"
Use the GitHub CLI to view merged PRs or commits since the last release.
# Get the latest release tag
LAST_TAG=$(gh release view --json tagName -q .tagName)
# Get PRs merged since the last release
gh pr list --state merged --base main --json number,title,author \
--search "merged:>$(gh release view $LAST_TAG --json publishedAt -q .publishedAt)"
Attach build artifacts to a release.
# Upload artifacts to an existing release
gh release upload v2.0.0 dist/app-linux-amd64.tar.gz dist/app-macos-arm64.zip
# List recent releases
gh release list --limit 5
# View a specific release
gh release view v2.0.0
--generate-notes to let GitHub pull in PR titles and contributors automatically.--draft when orchestrating complex deployments, giving you a chance to review notes and upload all binaries before publishing.