pace-change

A change-management skill for handling changes to planned product work, such as adding, pausing, resuming, reprioritising, or modifying requirements.

In plain words
What is it for?
Use it to update features or business requirements, make batch changes, undo a recent change in the current session, and review change history.
Why use it?
It keeps changing requirements organised and records their effects instead of leaving planning decisions scattered or unclear.

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-change
Any agent
npx skills add arch-team/devpace --skill pace-change
Clone the repo
git clone --depth 1 https://github.com/arch-team/devpace

Made for: Claude Code, Codex.

Per session 124 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,639 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.00124 $0.01639
Opus 5 $0.00062 $0.00820
Sonnet 5 $0.00025 $0.00328
Haiku 4.5 $0.00012 $0.00164

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

Security

Grade A, and why

pace-change 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.

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-change/SKILL.md · 113 lines

How it starts

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

/pace-change — 需求变更管理

有序处理需求的插入、暂停、恢复、优先级调整和范围修改。支持批量变更、撤销和变更历史查询。

与现有机制的关系

  • /pace-change:PF/BR/Epic 级需求变更(add/pause/resume/modify/reprioritize)
  • /pace-biz:业务规划域(Opportunity→Epic→BR 的创建和分解
  • /pace-plan adjust:迭代范围调整(哪些 PF 纳入/移出当前迭代)
  • 协同场景:/pace-change add 插入新 BR 或 PF → 容量溢出 → 建议 /pace-plan adjust
  • devpace-rules.md §9:自动检测变更意图,共享同一套 procedures 文件

推荐使用流程

新需求到达:  (空参) → add → /pace-dev
范围调整:    modify → (验证影响)→ /pace-dev
暂停与恢复:  pause → ... → resume → /pace-dev
撤销误操作:  undo(限当前会话)
审计追踪:    history [功能名|--all]
批量操作:    batch(合并多个变更,单次确认)

输入

$ARGUMENTS:

核心子命令

  • add <描述> → 插入新需求(支持 BR 级和 PF 级——自动检测粒度,或用 add br <描述> / add pf <描述> 显式指定)
  • pause <名称> → 暂停/砍掉(支持 Epic/BR/PF/CR 级——根据名称或 ID 自动匹配层级)
  • resume <名称> → 恢复已暂停的项目(支持 Epic/BR/PF/CR 级)
  • reprioritize <描述> → 优先级调整
  • modify <名称> <变更描述> → 修改已有需求(支持 Epic/BR/PF 级)

扩展子命令

  • batch <描述> → 批量变更(合并多个变更的影响分析和执行)
  • undo → 撤销上一次变更操作(限当前会话)
  • history [功能名|--all|--recent N] → 查询变更历史
  • apply <模板名> → 应用预定义的变更模板

快捷引用

  • #N → 按编号引用 CR(如 pause #3 = 暂停 CR-003 所属功能)
  • --last → 对上次操作的 CR 执行变更(如 modify --last = 修改最近操作的 CR)
  • --dry-run → 仅输出影响预览,不执行任何变更

空参数

  • (空)→ 智能引导——先扫描项目上下文(paused CR、Snooze 触发条件、迭代容量、频繁变更 PF),给出个性化推荐,再附标准选项列表兜底

执行路由表

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

子命令 加载文件
add / pause / resume / reprioritize / modify skills/pace-change/change-procedures-common.md + skills/pace-change/change-procedures-triage.md + skills/pace-change/change-procedures-impact.md + skills/pace-change/change-procedures-risk.md + skills/pace-change/change-procedures-execution.md + skills/pace-change/change-procedures-types.md
batch skills/pace-change/change-procedures-common.md + skills/pace-change/change-procedures-triage.md + skills/pace-change/change-procedures-impact.md + skills/pace-change/change-procedures-risk.md + skills/pace-change/change-procedures-execution.md + skills/pace-change/change-procedures-types.md + skills/pace-change/change-procedures-batch.md
undo skills/pace-change/change-procedures-undo.md(自包含)
history skills/pace-change/change-procedures-history.md(自包含)
apply skills/pace-change/change-procedures-common.md + skills/pace-change/change-procedures-triage.md + skills/pace-change/change-procedures-impact.md + skills/pace-change/change-procedures-risk.md + skills/pace-change/change-procedures-execution.md + skills/pace-change/change-procedures-types.md + skills/pace-change/change-procedures-apply.md
(空参数) skills/pace-change/change-procedures-common.md(仅"上下文感知引导"章节)
(降级模式,无 .devpace/) skills/pace-change/change-procedures-degraded.md(自包含)

Read the full file on GitHub · 113 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 · 113 lines · 124 tokens per session scan A 8a5bace7c566

Subscribe to this mod's changes

pace-change is a skill published in the GitHub repository arch-team/devpace (73 stars, last pushed 4mo ago), licensed MIT. It adds 124 tokens to every session and 1,639 once invoked, about $0.0006 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.