pace-dev

A development workflow skill for Devpace, a system that tracks software changes through requests and review stages. It helps carry out coding, fixes, refactoring, and other implementation work.

In plain words
What is it for?
It is for implementing features, fixing defects, refactoring code, and continuing a Devpace change request using its project procedures.
Why use it?
It provides a defined path for moving a tracked change from its current stage toward completion, reducing uncertainty about what to do next.

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

Made for: Claude Code, Codex.

Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,388 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.00113 $0.01388
Opus 5 $0.00056 $0.00694
Sonnet 5 $0.00023 $0.00278
Haiku 4.5 $0.00011 $0.00139

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

Security

Grade A, and why

pace-dev 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-dev/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-dev — 推进变更请求

进入推进模式,开始或继续推进一个变更。

输入

$ARGUMENTS:

  • (空)→ 自动选择 state.md 中的"下一步"
  • <功能描述> → 指定要推进的功能(自然语言匹配)
  • #<N> → 按 CR 编号直接定位(如 #3 → CR-003)
  • --last → 定位上一个操作过的 CR(从 state.md 或最近 git log 推断)
  • --batch → 连续推进模式:批量推进迭代内多个 S 复杂度 PF,最后统一审批

执行路由

重要:根据 CR 的当前状态和类型,仅读取对应的 procedures 文件,不加载其他 procedures。

固定加载

文件 说明
skills/pace-dev/dev-procedures-common.md 通用规则(始终加载)

按 CR 状态加载

CR 状态 加载文件 说明
created(首次进入 developing) skills/pace-dev/dev-procedures-intent.md 意图检查点 + 复杂度评估 + 执行计划
developing(已在推进中) skills/pace-dev/dev-procedures-developing.md 漂移检测 + 步骤隔离 + checkpoint
verifying / in_review skills/pace-dev/dev-procedures-gate.md Gate 通过反思
merged / CR 新创建 skills/pace-dev/dev-procedures-postmerge.md 功能发现 + PF 溢出检查

按 CR 类型追加加载

CR 类型 追加文件 说明
defect / hotfix skills/pace-dev/dev-procedures-defect.md 特殊创建 + 修复后处理

流程

Step 1:定位变更请求

  • #N 参数 → 直接读取 .devpace/backlog/CR-00N.md(编号补零匹配)
  • --last 参数 → 从 state.md "进行中"项推断,或 git log --oneline -5 中最近操作的 CR
  • 有自然语言参数 → 在 .devpace/backlog/ 中按标题关键词匹配
  • 无参数 → 读取 .devpace/state.md 的"下一步"
  • 未找到对应 CR → 自动创建(格式参考 Plugin knowledge/_schema/entity/cr-format.md)并更新 project.md 价值功能树(在匹配的 PF 行追加 → CR-xxx ⏳
  • 找到被阻塞的 CR → 告知用户阻塞原因,建议替代

CR 类型判断

  • 用户意图为修复缺陷 → type:defect(触发词:"修复""fix""bug""缺陷")
  • 用户意图为紧急修复 → type:hotfix(触发词:"紧急""hotfix""线上问题""生产故障")
  • 其他 → type:feature(默认)
  • defect/hotfix 必须填写 severity,由 Claude 根据描述自动建议

Step 2:加载上下文

  1. 读取 CR 文件:状态、质量检查、事件记录
  2. 读取 .devpace/rules/workflow.md:当前阶段的准出条件
  3. 读取 .devpace/rules/checks.md:质量检查检查项
  4. 用 1 句话告知用户:"从 [上次进度] 继续。"

Step 2.5:意图检查点

仅在 CR 状态为 created(首次进入 developing)时执行。已在 developing 或更后阶段的 CR 跳过此步。

根据 CR 状态和类型,按上方执行路由表加载对应的 procedures 文件。根据变更复杂度(简单/标准/复杂)自适应执行意图明确。对用户只说"明确了范围,开始做。"

Step 3:自治推进

进入推进模式,自主工作。遵循推进模式行为约束(rules/devpace-rules.md §2)和按执行路由表加载的 procedures 文件(权威源):

Read the full file on GitHub · 113 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 113 tokens per session scan A c4e5a94bd462

Subscribe to this mod's changes

pace-dev is a skill published in the GitHub repository arch-team/devpace (73 stars, last pushed 4mo ago), licensed MIT. It adds 113 tokens to every session and 1,388 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.

Related

Other skills, from other repositories