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.
npx agentmods add skills/paceaitian/paceflow/pace-bridgenpx skills add paceaitian/paceflow --skill pace-bridgegit clone --depth 1 https://github.com/paceaitian/paceflowWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00038 | $0.02650 |
| Opus 5 | $0.00019 | $0.01325 |
| Sonnet 5 | $0.00008 | $0.00530 |
| Haiku 4.5 | $0.00004 | $0.00265 |
Grade A, and why
pace-bridge 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 2d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 185 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Plan → PACEflow 桥接
pace-bridge 不直接 Edit task.md。桥接的唯一写入路径是派 artifact-writer。
触发场景
- PreToolUse / Claude 任务列表同步 DENY 提示检测到项目内计划文件。
- SessionStart 注入 Superpowers/native plan 桥接提醒。
- 用户要求“同步计划”“桥接计划”“把 plan 转成 PACE”。
前提
- 存在未同步的项目内 plan 文件:
docs/plans/或docs/superpowers/plans/。 ~/.claude/plans/不由 hook 自动扫描;只有当用户或 SessionStart/Claude 明确给出具体路径时,才手动读取并桥接该文件。- 当前没有同一计划对应的活跃 CHG。
- 如果计划来自已获用户确认的 brainstorming/writing-plans,可执行 auto-APPROVED;否则桥接后进入 C 阶段等待用户批准。
- Claude Code 原生 plan 的文件名/会话名可能随版本变化;桥接只以 hook 提供的明确路径、文件内容和最近修改时间为依据,不凭文件名是否随机判断。
- Project Root 是 PACEflow 管理边界;普通子目录默认继承最近父级 Project Root。若当前子目录确实是独立项目,先运行 hook 提示的
set-project-roothelper(--mode independent),再选择 artifact root。 - 若用户已经明确选择 artifact root,但配置尚未写入,正确做法是先运行 hook 提示的
set-artifact-roothelper(--choice vault、--choice local,或--choice <绝对路径或相对 Project Root 路径>),再从目标项目 cwd 运行 reserve helper。.pace/artifact-root只由set-artifact-roothelper 写入;git worktree 与继承父 Project Root 的子目录走宿主项目共享位置。helper 接受自身文档列出的参数,自动化用--cwd指定项目 cwd。 - Helper 命令来源顺序的权威定义见 Skill(paceflow:pace-workflow)「Helper 命令来源」(本节不再复制)。速记:优先复制 SessionStart / PreToolUse 给出的完整命令;无 hook 输出但本 skill 已加载时以 skill 根目录拼 fallback;不扫描
~/.claude/plugins/cache猜版本。按当前动作选择下面一条模板运行;这不是顺序执行清单:
node "<skill-root>/../../hooks/set-project-root.js" --mode independent
node "<skill-root>/../../hooks/set-artifact-root.js" --choice local|vault
node "<skill-root>/../../hooks/reserve-artifact-id.js" --operation create-chg --cwd <项目 cwd>
node "<skill-root>/../../hooks/sync-plan.js" --plan "<已桥接的 plan 绝对路径>"
桥接步骤
Step 1:读取计划
读取最新未同步 plan,提取:
- 标题与目标
- 任务列表
- 影响文件/模块
- 技术决策与风险
- 验收条件
- 推荐执行方式(串行、TDD、subagent-driven、parallel agents)
Step 2:组织 create-chg 输入
先按 CHG 粒度拆分 plan。CHG 不是大计划容器,而是连续执行、可验证、可关闭的最小变更单元:
- 如果计划横跨前端、后端、存储、迁移、文档/配置,默认拆成多个 CHG。
- 如果某部分可以独立验证、独立回滚、独立交给一个 worktree/session 执行,就拆成独立 CHG。
- 每个 CHG 内可以有多个
T-NNN,但这些任务必须服务于同一个闭环,并默认连续完成。 - 按闭环边界拆分功能:4-5 个独立功能拆成各自的 CHG,而非按原 plan 层级合并。
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.
- 2d ago First seen · 185 lines · 38 tokens per session scan A 166a8e3fbf1c
pace-bridge is a skill published in the GitHub repository paceaitian/paceflow (38 stars, last pushed 15d ago), licensed MIT. It adds 38 tokens to every session and 2,650 once invoked, about $0.0002 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.
Other skills, from other repositories
concord-relay
Keep this Grok session reachable by other Concord agents while idle.
elasticsearch-esql
Generate and execute ES|QL (Elasticsearch Query Language) queries from natural language and visualize results with Vega-Lite charts. Translates user intent into valid ES|QL queries, executes them against Elasticsearch, and can render professional data visualizations (bar, line, scatter, heatmaps, small multiples…
eddo-todo
Todo and task management via Eddo MCP server. Use for tracking work items, remembering tasks, managing project todos and time tracking. Supports GTD workflow with contexts and actionability tags (next actions, projects, waiting, someday). Use this skill whenever you need to remember something, track progress, or…
eddo-work
Structured work mode for implementing complex tasks with phases. Use when user says "what next?" followed by "let's work on this" or "start working". Provides REFINE, IMPLEMENT, REVIEW, COMPLETE, and GITHUBPR phases with gates and reflection checklists. Works with eddo-todo for task tracking.
searxng-search
Web search and content extraction via SearXNG. No API keys, no rate limits. Available in containerized agents via the eddo-chat Docker network.
bcc-plan-spar
BCC align+lock+review PLAN.md for one slice (no product code). Slash: /bcc-plan-spar · chat: bcc:plan-spar · "lock PLAN" · spar the plan. Args: rounds=N (auto-review cap), review=self|subagent|cli|auto|off. Grill until clear enough (no default Q&A quota). Hand off to bcc-clean-cut after human APPROVE.