pace-release

A release-management workflow for coordinating software versions from preparation through deployment and closure. A release is a planned delivery of changes to users or an environment.

In plain words
What is it for?
It is for creating, deploying, verifying, and closing releases, as well as preparing changelogs, version bumps, tags, release notes, branches, and rollback records.
Why use it?
It keeps candidate changes, deployment checks, version updates, notes, tags, and possible rollbacks together in one process.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/arch-team/devpace/pace-release
Any agent
npx skills add arch-team/devpace --skill pace-release
Clone the repo
git clone --depth 1 https://github.com/arch-team/devpace

Made for: Claude Code, Codex.

Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,245 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00054 $0.01245
Opus 5 $0.00027 $0.00622
Sonnet 5 $0.00011 $0.00249
Haiku 4.5 $0.00005 $0.00125

Measured yesterday against content hash fc5f38e24cb5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

pace-release scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/infer-version-bump.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/pace-release/SKILL.md · 79 lines

How it starts

The opening of the file, as written. The whole thing — 79 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/pace-release — 发布管理

可选功能:如果你没有正式的发布流程,不需要使用这个命令。任务 merged 就是你的完成点,不需要 Release 管理。

管理 Release 生命周期:收集候选变更 → 创建 Release → 追踪部署 → 验证 → 关闭。支持 Changelog、版本 bump、Git Tag、GitHub Release、Release Notes 和发布分支管理。

推荐使用流程

标准发布:  create → deploy → verify → close
快速查看:  status(或无参数启动引导向导)
单步操作:  changelog / version / tag / notes(独立使用)
回滚处理:  rollback → 创建 hotfix CR → 新 create
历史回顾:  status history

输入

$ARGUMENTS:

日常使用(大多数场景只需这些):

  • create → 创建新 Release(收集 merged CR + Gate 4 检查)
  • deploy → 记录部署操作(支持多环境晋升)
  • verify → 执行验证清单(支持自动化验证)
  • close → 完成发布(自动 changelog + 版本 bump + tag + 连锁更新)
  • full → close 的推荐别名(语义更明确)
  • status → 查看当前 Release 状态和建议下一步
  • (空)→ 引导式发布向导(推荐新用户使用)

单独使用(当你只需要其中某个步骤时):

  • changelog → 仅生成 CHANGELOG.md
  • version → 仅更新版本文件
  • tag → 仅创建 Git Tag / GitHub Release
  • notes → 生成面向用户的 Release Notes(按 Epic→BR→PF 组织,支持 --role biz|ops|pm
  • branch → 管理发布分支(创建 / PR / 合并)
  • rollback → 记录回滚(deployed 状态下出现严重问题时)
  • status history → 发布历史时间线(跨 Release 纵向视图 + DORA 趋势)

执行路由

根据子命令,只读取路由表中对应的 procedures 文件,不加载其他 procedures 文件。

核心操作固定加载

core 子命令(create/deploy/verify/close/full)加载 skills/pace-release/release-procedures-common.md(发布规则 + 集成规则 + 版本推断 SSOT)。

按子命令加载

参数 加载文件 说明
(空) skills/pace-release/release-procedures-wizard.md 自包含;引导式向导(含 rolled_back 追踪)
create skills/pace-release/release-procedures-common.md + skills/pace-release/release-procedures-create.md;CR>3 或有 config.md 时追加 skills/pace-release/release-procedures-create-enhanced.md 分层加载
deploy skills/pace-release/release-procedures-common.md + skills/pace-release/release-procedures-deploy.md 环境晋升 + 路径全景
verify skills/pace-release/release-procedures-common.md + skills/pace-release/release-procedures-verify.md 自动健康检查 + 问题处理
close / full skills/pace-release/release-procedures-common.md + skills/pace-release/release-procedures-close.md;步骤 1-3 按执行进度加载 skills/pace-release/release-procedures-changelog.md / skills/pace-release/release-procedures-version.md / skills/pace-release/release-procedures-tag.md 步进式增量加载
changelog skills/pace-release/release-procedures-changelog.md 自包含
version skills/pace-release/release-procedures-version.md 自包含(含精简版本推断规则)
tag skills/pace-release/release-procedures-tag.md 自包含
rollback skills/pace-release/release-procedures-rollback.md 自包含(含候选预填)
notes skills/pace-release/release-procedures-notes.md 自包含(支持 --role biz|ops|pm
branch skills/pace-release/release-procedures-branch.md 自包含
status / status history skills/pace-release/release-procedures-status.md 自包含

Read the full file on GitHub · 79 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 79 lines · 54 tokens per session scan A fc5f38e24cb5

Subscribe to this mod's changes

pace-release is a skill published in the GitHub repository arch-team/devpace (73 stars, last pushed 4mo ago), licensed MIT. It adds 54 tokens to every session and 1,245 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories