agentsclimarketplace

Release manager

Skill findscripter/everything-skills/02-engineering/release-manager

当需要规划版本发布、生成变更日志、协调部署、创建发布分支或自动化版本号时使用;做发布全流程编排(语义化版本、变更日志、就绪检查、灰度/回滚/热修复)并产出发布计划与文档;不适用于纯需求评审、CI/CD 流水线脚本细节实现或代码审查本身。触发词:发布、changelog、回滚From its SKILL.md

Install
npx -y skills add findscripter/everything-skills --skill release-manager

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

5.6 KB, ~1.7k tokens by cl100k_base, as published. Nobody here has run it

何时使用

适用场景:

  • 需要从 git 历史自动生成结构化变更日志(基于 Conventional Commits)。
  • 需要根据提交分析判定语义化版本号的升级(MAJOR/MINOR/PATCH 或预发布)。
  • 规划发布、做发布就绪评估、协调多方干系人沟通与排期。
  • 准备灰度/蓝绿发布、回滚预案、热修复(hotfix)应急流程。
  • monorepo 多包独立版本与协调发布。

不该用(负边界):

  • 纯产品需求评审、设计讨论,与发布编排无关时。
  • 具体 CI/CD 流水线 YAML/脚本的逐行实现(本技能给策略与门禁,不替代平台配置)。
  • 代码审查本身(应走 code review 流程)。

步骤

  1. 收集提交:取上次发布 tag 以来的 git log,按 Conventional Commits 解析 <type>[scope]: <desc>
  2. 判定版本升级(自动规则):
    • MAJOR:任意提交含 BREAKING CHANGE 或 type 后带 !
    • MINOR:存在 feat 且无破坏性变更。
    • PATCH:仅 fix/perf/security
    • 不升级:仅 docs/style/test/chore/ci/build
    • 预发布递进:alpha → beta → rc → 正式(如 1.0.0-rc.2 → 1.0.0)。
  3. 生成变更日志:按 Added/Changed/Deprecated/Removed/Fixed/Security 分组,突出破坏性变更,链接 PR/Issue (#123),保留 scope 分组与 Co-authored-by
  4. 选择分支工作流:Git Flow / Trunk-based / GitHub Flow(见下)。
  5. 过发布就绪检查清单(功能、质量门禁、文档、干系人签批)。
  6. 编排部署时序与监控,准备回滚触发条件与预案。
  7. 发布后监控关键指标,在回滚窗口内做去留决策。

指令

判定版本升级(参考规则):

MAJOR: 任意提交含 BREAKING CHANGE 或 type 后带 "!"
MINOR: 任意 feat(无破坏性变更)
PATCH: fix / perf / security
NO BUMP: 仅 docs/style/test/chore/ci/build

预发布递进:

# Alpha:  1.0.0-alpha.1 → 1.0.0-alpha.2
# Beta:   1.0.0-alpha.5 → 1.0.0-beta.1
# RC:     1.0.0-beta.3  → 1.0.0-rc.1
# 正式:    1.0.0-rc.2    → 1.0.0

Git Flow 发布流程(关键命令):

git checkout -b release/1.2.0 develop   # 从 develop 切发布分支
# 完成版本号升级与 changelog 定稿
# 合并回 main 和 develop
git tag v1.2.0                            # 打标签
# 从 main 部署

monorepo 多包:独立分析各包受影响提交,支持 scoped 版本 @scope/[email protected],生成跨包协调发布计划。

示例

Conventional Commits 与对应升级:

feat(user-auth): add OAuth2 integration        # → MINOR
fix(api): resolve race condition in user creation  # → PATCH
docs(readme): update installation instructions     # → 不升级

feat!: remove deprecated payment API           # → MAJOR
BREAKING CHANGE: The legacy payment API has been removed

变更日志结构:

## [1.2.0] - 2024-01-15
### Added
- OAuth2 authentication support (#123)
### Fixed
- Race condition in user creation (#134)
### Breaking Changes
- Removed legacy payment API

部署时序(蓝绿):

T-24h  代码冻结、最终验证
T-2h   执行并校验数据库迁移
T-0    蓝绿切流,逐步导入流量
T+1h   监控指标与日志
T+4h   回滚决策点

注意事项

  • 回滚优先级:能用「关闭 feature flag」就不要做代码回滚;数据库优先「只进式迁移」(加列而非删列),破坏性迁移前必须备份。
  • 回滚触发线(参考):错误率 >2x 基线(30 分钟内)、延迟上升 >50%、核心功能损坏、安全事件、数据损坏。
  • 热修复分级:P0 完全中断/数据丢失/安全漏洞,2 小时内修复,需工程负责人 + on-call 经理批准;P1 主功能损坏,24 小时内;P2 进入下个发布周期。hotfix 从最近稳定版切分支,只改根因,加速测试后紧急部署,事后做复盘。
  • 质量门禁建议:单测覆盖率 ≥ 85%,集成/E2E 通过,静态分析与安全扫描、依赖审计干净。
  • 发布前 48 小时功能冻结;建立可预期的发布节奏;用金丝雀/灰度逐步放量并监控。
  • 反模式:手工部署、临门改动、跳过测试、巨型低频发布、无回滚预案、环境漂移(生产与预发不一致)。
  • 关注指标:前置时间、部署频率、MTTR、变更失败率、回滚率、热修复率。

互见

  • code-review:发布前的代码审查。
  • verify / run:发布前在真实环境验证变更是否生效。
  • schedule / loop:发布后定期监控或巡检。

采编自 alirezarezvani/claude-skills(MIT)。

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 0 of the 12 instructions most ship operate skills give in ~1.7k tokens

Counted across 779 of the 1,178 authors here whose files we hold, read 2026-08-07

  • Document a rollback plan before deploymentin 41 of 779, across 22 files
  • Update the changelogin 21 of 779, across 19 files
  • Run the test suitein 20 of 779
  • Create an annotated git tagin 20 of 779
  • Clean up feature flags after full rolloutin 18 of 779, across 10 files
  • Verify deployment health after launchin 18 of 779, across 10 files
  • Test both feature flag statesin 17 of 779, across 9 files
  • Verify the working tree is cleanin 17 of 779
  • Make database migrations backward-compatiblein 16 of 779, across 8 files
  • Set up error monitoring before launchin 15 of 779, across 7 files
  • Monitor metrics at each rollout stagein 14 of 779, across 5 files
  • Create a GitHub releasein 14 of 779

Said here and by no other author read

  • parse conventional commits since last tag
  • generate changelog grouped by change type
  • select a release branch workflow
  • orchestrate deployment timing and monitoring
  • prepare rollback triggers and contingency plans
  • prefer feature flag over code rollback

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.