release-post-verify

release-post-verify is a skill for Claude Code, Codex from Linfee/spec-kit-cn. It costs 69 tokens per session (782 once invoked), scanned A, original, MIT.

A release-checking script for specify-cn, a Chinese-language version of the Specify project setup tool. It installs the newest code from the project’s main branch in a temporary directory and checks its setup output.

In plain words
What is it for?
Running local acceptance checks against a published release, either for all supported agents or a selected subset, while keeping test files out of the repository.
Why use it?
It helps catch problems after a release, such as an outdated install, incomplete templates, misplaced agent files, or broken support for supported agents. It also checks optional AI-skill installation results.

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/linfee/spec-kit-cn/release-post-verify
Any agent
npx skills add Linfee/spec-kit-cn --skill release-post-verify
Clone the repo
git clone --depth 1 https://github.com/Linfee/spec-kit-cn

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for release-post-verify

README.md
[![agentmods](https://agentmods.dev/badge/skills/linfee/spec-kit-cn/release-post-verify.svg)](https://agentmods.dev/skills/linfee/spec-kit-cn/release-post-verify)
Your own site
<a href="https://agentmods.dev/skills/linfee/spec-kit-cn/release-post-verify"><img src="https://agentmods.dev/badge/skills/linfee/spec-kit-cn/release-post-verify.svg" alt="Measured on agentmods" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 782 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.00069 $0.00782
Opus 5 $0.00034 $0.00391
Sonnet 5 $0.00014 $0.00156
Haiku 4.5 $0.00007 $0.00078

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

Security

Grade A, and why

release-post-verify 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 5d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (validate_release_post.py), 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.

.claude/skills/release-post-verify/SKILL.md · 74 lines

What it actually says

发布后本地验收

这个 skill 只用于手动触发,不应自动执行。

目标

验证 specify-cnmain 分支最新提交是否满足以下条件:

  1. 安装到的是目标最新版
  2. CLI 输出仍然是中文
  3. 对全部支持的 agent 都能成功执行 init
  4. .specify/templates.specify/memory、脚本目录完整
  5. agent 命令/工作流/提示文件落在正确位置
  6. --ai-skills 模式下,skills 安装在正确位置且内容基本正确

使用方式

默认全量执行:

python3 .claude/skills/release-post-verify/validate_release_post.py

常用变体:

# 仅跑部分 agent
python3 .claude/skills/release-post-verify/validate_release_post.py --agents claude copilot q

# 保留临时目录
python3 .claude/skills/release-post-verify/validate_release_post.py --keep-temp

# 跳过 ai-skills 或 PowerShell 抽样
python3 .claude/skills/release-post-verify/validate_release_post.py --skip-ai-skills --skip-ps-sample

执行要求

  1. 先读取脚本输出,不要手工猜测 agent 列表;脚本会从仓库源码中的 AGENT_CONFIG 动态取值。
  2. 必须通过远端 main 分支最新提交运行,禁止回退到本地源码、本地 wheel 或当前工作区环境:
    • 首选 uvx --isolated --from git+https://github.com/linfee/spec-kit-cn@main specify-cn
    • 失败时再尝试 uv tool run --isolated --from git+https://github.com/linfee/spec-kit-cn@main specify-cn
    • 任何情况下都不能使用 uv run specify-cn、本地 editable 安装、仓库内 wheel 文件或本地路径依赖代替发布包
  3. 脚本会优先复用现有 GH_TOKEN / GITHUB_TOKEN,否则尝试读取 gh auth token,并自动传给需要访问 GitHub API 的命令。
  4. 所有初始化必须在临时目录进行,不要把验证产物写回仓库。
  5. 默认应跑完整轮,即使某个 agent 失败,也继续其余 agent,最后统一汇总。
  6. 若脚本返回非零退出码,不要宣称验证通过;先根据报告定位失败项。

输出解读

脚本会输出:

  • 使用的 runner
  • 目标版本
  • 临时目录位置
  • JSON 报告路径
  • 每个 agent 的 normal-init / ai-skills-init / powershell-sample 状态

如果失败,临时目录会自动保留,便于继续排查。

完成时的回复要求

完成后只给用户简短结论,至少包含:

  1. 是否通过
  2. 失败的 agent 或失败类别
  3. 临时目录或报告路径(若失败)
Files

What ships with it

1 file 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. 5d ago First seen · 74 lines · 69 tokens per session scan A eb048dfb5790

Subscribe to this mod's changes

release-post-verify is a skill published in the GitHub repository Linfee/spec-kit-cn (695 stars, last pushed 1mo ago), licensed MIT. It adds 69 tokens to every session and 782 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

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

babysit-pr

Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…

openai/codex · 114 tokens