Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

release-manager发布经理

Agent Skill

release-manager 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,225

周安装

90

GitHub Stars

103

下载量

698
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:release-manager(发布经理)
来源仓库:https://github.com/borghei/claude-skills
仓库路径:skills/release-manager
安装命令:
npx skills add https://github.com/borghei/claude-skills --skill release-manager
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/borghei/claude-skills --skill release-manager

简介

release-manager 自动化解析提交记录并生成结构化变更日志,辅助版本发布决策。

  • 支持语义化版本判断与发布就绪性检查,包含回滚预案与沟通计划。
  • 通过脚本集成实现从提交到发布的端到端流程,提升交付可靠性。
  • 涉及生产部署时需验证权限与环境配置,防止误操作影响线上服务。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Release Manager

The agent automates release management by parsing conventional commits into structured changelogs, determining semantic version bumps, and assessing release readiness with checklists, rollback runbooks, and stakeholder communication plans.

Quick Start

# Generate changelog from conventional commits
git log --oneline v1.0.0..HEAD | python changelog_generator.py --version 1.1.0 --format both

# Determine version bump from commit history
git log --oneline v1.0.0..HEAD | python version_bumper.py --current-version 1.0.0 --analysis

# Assess release readiness
python release_planner.py --input release-plan.json --include-checklist --include-rollback

Core Workflows

Workflow 1: Generate Changelog and Version Bump

  1. Collect commits since last tag: git log --oneline v1.0.0..HEAD
  2. Pipe to changelog_generator.py to produce a Keep-a-Changelog-format CHANGELOG
  3. Pipe to version_bumper.py to determine MAJOR/MINOR/PATCH bump from commit types
  4. Review changelog grouping (Added, Fixed, Changed, Breaking Changes)
  5. Validation checkpoint: All feat commits appear under Added; all fix under Fixed; breaking changes highlighted
git log --oneline v1.2.0..HEAD | python changelog_generator.py \
  --version 1.3.0 --date 2026-03-21 --base-url https://github.com/org/repo --summary

Workflow 2: Assess Release Readiness

  1. Prepare release plan JSON with features, quality gates, stakeholders, and target date
  2. Run release_planner.py with checklist, communication, and rollback flags
  3. Review blocking issues and readiness score
  4. Address blockers (missing approvals, failed gates, overdue items)
  5. Validation checkpoint: Readiness score >80%; zero blocking issues; rollback runbook generated with time estimates
python release_planner.py --input release-plan.json \
  --output-format json --include-checklist --include-communication --include-rollback

Workflow 3: Hotfix Release

  1. Create hotfix branch from last stable tag
  2. Apply minimal fix and run version_bumper.py with --prerelease rc
  3. Generate changelog entry for the fix
  4. Assess readiness with expedited checklist
  5. Validation checkpoint: Fix addresses root cause only; rollback procedure tested; stakeholders notified

Version Bump Rules

Commit TypeBumpExample
BREAKING CHANGE or ! suffixMAJORfeat!: remove deprecated API
featMINORfeat(auth): add OAuth2
fix, perf, securityPATCHfix(api): resolve race condition
docs, test, chore, ciNonedocs: update README

Pre-release progression: alpha.N -> beta.1 -> rc.1 -> stable release.


Rollback Triggers

  • Error rate: >2x baseline within 30 minutes
  • Latency: >50% P95 increase
  • Feature failures: Core functionality broken
  • Security incident: Vulnerability exploited
  • Data corruption: Database integrity compromised

Anti-Patterns

  • Monolithic releases -- large, infrequent releases with high blast radius; prefer small, frequent releases
  • Manual deployments -- error-prone and inconsistent; automate every step that can be automated
  • No rollback plan -- every release must have a tested rollback procedure before going live
  • Skipping quality gates -- deploying without test coverage, security scan, or dependency audit
  • Last-minute changes -- code freeze exists for a reason; changes after freeze need explicit approval
  • Non-conventional commits -- free-form commit messages break changelog generation and version bumping
  • Environment drift -- staging must mirror production; drift causes false confidence in testing

Troubleshooting

ProblemCauseSolution
Changelog generator produces empty outputNon-conventional commit messages that don't match the type(scope): description patternEnsure all commits follow conventional commit format; non-matching messages default to chore type which is excluded from user-facing changelogs
Version bumper recommends none despite meaningful commitsCommits use types in the ignore list (test, ci, build, chore, docs, style)Use feat for new features and fix for bug fixes; override with --custom-rules to map additional types to bump levels
Release planner reports blocked status unexpectedlyMissing required approvals (pm_approved, qa_approved) on features or failed required quality gatesReview the blocking_issues array in the assessment output; ensure all features have the necessary approval flags set to true in the input JSON
Pre-release version not incrementing correctlyExisting pre-release type does not match the requested --prerelease type, causing a reset to .1When promoting from alpha to beta or beta to rc, the counter resets to 1 by design; to stay on the same track, pass the same pre-release type
Git log parsing misses commitsInput uses full git log format but lines are not properly indented with 4 spacesUse git log --oneline for the simplest input format, or ensure the full format output preserves the standard 4-space commit message indent
Readiness score seems too lowQuality gates default to pending status when not explicitly set, and pending gates score zero pointsProvide explicit quality_gates with accurate status values in the release plan JSON, or complete the gates before running assessment
Rollback time estimate is inaccurateDefault rollback steps use generic time estimates that don't reflect your infrastructureSupply custom rollback_steps in the release plan JSON with estimated_time values that match your actual deployment environment

Success Criteria

  • Changelog accuracy: 100% of conventional commits are correctly categorized (feat to Added, fix to Fixed, etc.) with zero miscategorized entries
  • Version bump correctness: Recommended version matches SemVer rules in all cases -- breaking changes produce MAJOR, features produce MINOR, fixes produce PATCH
  • Readiness assessment coverage: All blocking issues (missing approvals, failed quality gates, overdue timelines) are surfaced with zero false negatives
  • Release cycle time reduction: Teams using the planner reduce release preparation time by 40% or more compared to manual checklist tracking
  • Rollback preparedness: Every release assessed by the planner has a complete, actionable rollback runbook with time estimates and verification steps
  • Stakeholder communication: Communication plans cover all identified stakeholders with appropriate timing (T-48h external, T-24h internal, T+1h post-deploy)
  • Tool integration time: New teams can configure and run all three scripts against their repository within 30 minutes of initial setup

Scope & Limitations

This skill covers:

  • Parsing conventional commits and generating structured changelogs in Markdown and JSON formats
  • Determining semantic version bumps (major/minor/patch) with pre-release support (alpha, beta, rc)
  • Assessing release readiness across features, quality gates, approvals, and timelines
  • Generating rollback runbooks, communication plans, and release checklists from structured input

This skill does NOT cover:

  • Actual CI/CD pipeline execution or deployment automation (see engineering/ci-cd-pipeline-generator)
  • Live monitoring, alerting, or incident response during deployments (see engineering/monitoring-alerting-setup)
  • Code review processes or pull request management (see engineering/code-review-automation)
  • Infrastructure provisioning, container orchestration, or environment management (see engineering/infrastructure-as-code)

Integration Points

SkillIntegrationData Flow
engineering/ci-cd-pipeline-generatorEmbed changelog generation and version bumping as pipeline stagesGit log output flows into changelog_generator.py; version bump output feeds pipeline tagging steps
engineering/code-review-automationValidate that PR commits follow conventional commit format before mergeCommit messages validated upstream ensure clean input for changelog generation
engineering/monitoring-alerting-setupDefine rollback triggers based on monitoring thresholds from the rollback runbookRollback trigger thresholds (error rate >2x, latency >50%) feed into alert rule configuration
engineering/api-design-reviewerBreaking API changes flagged by the reviewer map to MAJOR version bumpsAPI review findings populate breaking_changes arrays in the release plan JSON
engineering/infrastructure-as-codeDeployment steps in the rollback runbook reference infrastructure rollback commandsRollback runbook command fields contain infrastructure-specific commands (kubectl, DNS, load balancer)
project-management/release-planningRelease plan JSON structure aligns with PM release tracking artifactsPM feature lists and approval statuses feed directly into release_planner.py input format

Tool Reference

changelog_generator.py

Purpose: Parses git log output in conventional commit format and generates structured changelogs. Groups commits by type (Added, Fixed, Changed, etc.), extracts scope and issue references, and highlights breaking changes.

Usage:

git log --oneline v1.0.0..HEAD | python changelog_generator.py
python changelog_generator.py --input commits.txt --version 2.0.0 --format json
cat commits.json | python changelog_generator.py --input-format json --summary

Flags/Parameters:

FlagShortTypeDefaultDescription
--input-istringstdinInput file path; reads from stdin if omitted
--format-fchoicemarkdownOutput format: markdown, json, or both
--version-vstringUnreleasedVersion label for the changelog section header
--date-dstringtodayRelease date in YYYY-MM-DD format
--base-url-ustringemptyBase repository URL for commit links (e.g., https://github.com/org/repo)
--input-formatchoicegit-logInput format: git-log (oneline or full) or json (array of commit objects)
--output-ostringstdoutOutput file path; prints to stdout if omitted
--summary-sflagfalseAppend release summary statistics (total commits, by type, breaking changes, issue references)

Example:

git log --oneline v1.2.0..HEAD | python changelog_generator.py \
  --version 1.3.0 \
  --date 2026-03-21 \
  --base-url https://github.com/myorg/myapp \
  --format both \
  --summary

Output Formats:

  • markdown: Keep a Changelog format with sections for Breaking Changes, Added, Changed, Deprecated, Removed, Fixed, Security. Commits grouped by scope within each section.
  • json: Structured object with version, date, summary (counts by type, by author, scopes, issue references), and categories (arrays of commit objects per category).
  • both: Markdown changelog followed by JSON output, each with a heading separator.

version_bumper.py

Purpose: Analyzes conventional commits since the last tag to determine the correct semantic version bump (major/minor/patch). Supports pre-release versions (alpha, beta, rc) and generates version bump commands for npm, Python, Rust, Git, and Docker.

Usage:

git log --oneline v1.2.0..HEAD | python version_bumper.py --current-version 1.2.0
python version_bumper.py -c 2.0.0-beta.3 -i commits.json --input-format json --prerelease rc
git log --oneline v1.0.0..HEAD | python version_bumper.py -c 1.0.0 -f json --analysis --include-commands

Flags/Parameters:

FlagShortTypeDefaultDescription
--current-version-cstringrequiredCurrent version (e.g., 1.2.3, v1.2.3, 1.0.0-beta.2)
--input-istringstdinInput file with commits; reads from stdin if omitted
--input-formatchoicegit-logInput format: git-log (oneline) or json (array of commit objects)
--prerelease-pchoicenoneGenerate pre-release version: alpha, beta, or rc
--output-format-fchoicetextOutput format: text, json, or commands
--output-ostringstdoutOutput file path; prints to stdout if omitted
--include-commandsflagfalseInclude version bump commands for npm, Python, Rust, Git, and Docker
--include-filesflagfalseInclude file update snippets for package.json, pyproject.toml, setup.py, Cargo.toml, init.py
--custom-rulesstringnoneJSON string mapping commit types to bump levels (e.g., '{"perf": "minor"}')
--ignore-typesstringtest,ci,build,chore,docs,styleComma-separated list of commit types to ignore for bump determination
--analysis-aflagfalseInclude detailed commit analysis (breaking changes list, features list, fixes list, ignored list)

Example:

git log --oneline v2.1.0..HEAD | python version_bumper.py \
  --current-version 2.1.0 \
  --output-format json \
  --analysis \
  --include-commands \
  --include-files

Output Formats:

  • text: Human-readable summary with current version, recommended version, bump type, and optional analysis/commands.
  • json: Structured object with current_version, recommended_version, bump_type, and optional analysis, commands, and file_updates fields.
  • commands: Shell-ready version bump commands organized by platform (npm, Python, Rust, Git, Docker).

release_planner.py

Purpose: Takes a release plan JSON (features, quality gates, stakeholders, target date) and assesses release readiness. Generates a readiness report with scoring, a release checklist, a stakeholder communication plan with message templates, and a rollback runbook.

Usage:

python release_planner.py --input release-plan.json
python release_planner.py -i plan.json -f json --include-checklist --include-rollback
python release_planner.py -i plan.json -f markdown --include-checklist --include-communication --include-rollback

Flags/Parameters:

FlagShortTypeDefaultDescription
--input-istringrequiredPath to release plan JSON file
--output-format-fchoicetextOutput format: json, markdown, or text
--output-ostringstdoutOutput file path; prints to stdout if omitted
--include-checklistflagfalseInclude the full release checklist (pre-release validation, quality gates, approvals, documentation, deployment)
--include-communicationflagfalseInclude stakeholder communication plan with timeline and message templates
--include-rollbackflagfalseInclude rollback runbook with step-by-step procedures, triggers, and verification checks
--min-coveragefloat80.0Minimum test coverage threshold percentage for quality gate validation

Example:

python release_planner.py \
  --input release-plan.json \
  --output-format json \
  --output readiness-report.json \
  --include-checklist \
  --include-communication \
  --include-rollback \
  --min-coverage 85.0

Input JSON Structure: The input file expects a JSON object with keys: release_name, version, target_date (ISO format), features (array of feature objects with id, title, type, status, risk_level, approvals, etc.), quality_gates (optional array), stakeholders (optional array), and rollback_steps (optional array). When quality_gates or rollback_steps are omitted, sensible defaults are generated automatically.

Output Formats:

  • text: Plain text report with status, readiness score, blocking issues, warnings, recommendations, feature summary, and quality gate summary.
  • markdown: Formatted Markdown report with headings, status icons, and structured feature/checklist sections.
  • json: Complete structured object with assessment, checklist, communication_plan, and rollback_runbook fields (null when not requested).

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.57%
按下载量换算276

Claude

27.97%
按下载量换算195

Cursor

17.82%
按下载量换算124

Gemini CLI

9.96%
按下载量换算70

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills