PuPu: Skill for Claude Code

.claude/skills/release-feature-audit/SKILL.md

release-feature-audit is a skill for Claude Code from haoxiang-xu/PuPu. It costs 94 tokens per session (2,519 once invoked), scanned A, original, Apache-2.0.

A checklist for reviewing a completed PuPu feature before its release ticket is marked done. It checks the feature's code and related areas, with a full scan for missing translation keys.

In plain words
What is it for?
Use it to audit a finished feature, check internationalisation coverage, report violations with file and line locations, and fill missing translation keys when supported.
Why use it?
It catches consistency and translation problems before release while keeping findings reviewable by the maintainer. It focuses on the feature and the code it affects rather than the whole repository.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions subagents.

This is haoxiang-xu/PuPu's own configuration. It tells Claude Code how to work on PuPu itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything PuPu configures →

Reuse

Borrowing it

Nothing to install: this file belongs to haoxiang-xu/PuPu. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/haoxiang-xu/PuPu/main/.claude/skills/release-feature-audit/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/haoxiang-xu/PuPu

Made for: Claude Code.

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-feature-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/haoxiang-xu/pupu/release-feature-audit/github.svg)](https://agentmods.dev/skills/haoxiang-xu/pupu/release-feature-audit)
Your own site
<a href="https://agentmods.dev/skills/haoxiang-xu/pupu/release-feature-audit"><img src="https://agentmods.dev/badge/skills/haoxiang-xu/pupu/release-feature-audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for release-feature-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/haoxiang-xu/pupu/release-feature-audit"><img src="https://agentmods.dev/badge/skills/haoxiang-xu/pupu/release-feature-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,519 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00094 $0.02519
Opus 5 $0.00047 $0.01260
Sonnet 5 $0.00019 $0.00504
Haiku 4.5 $0.00009 $0.00252

Measured 11d ago against content hash cf154f0af3ae, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

release-feature-audit 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 11d ago.

The scan reads SKILL.md. This mod also ships 8 executable files (apply.mjs, apply.test.mjs, audit.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.

.claude/skills/release-feature-audit/SKILL.md · 150 lines

How it starts

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

Release: Feature Audit

Five consistency checks against one completed feature. Run before a direct Release sub-issue is marked Done; close-sprint treats an unaudited new feature as not-done-yet. Scope = the feature's diff and its blast radius, not the whole repo — except i18n, which is always a full scan (cheap, script-driven).

Findings are report-first: list violations with file:line, propose the fix, let the project maintainer/implementer decide. Only i18n missing-key auto-fill applies changes directly (rule inherited from the old i18n-coverage skill).

Retired workflow exclusions

Do not read, request, or validate implementation-owner confirmations, Quorum or court records, cases, proposals, rulings, handoffs, HS/RS/AT records, or any other retired authorization artifact. Their presence or absence must never affect PASS/FAIL. For cross-boundary work, use only the current Release issue or direct Plan plus the technical BC/SEQ/AC and immutable artifact evidence below.

Release membership

For a ticket audit, first resolve the ticket's direct Size=Release parent and verify its Project item. The Parent issue and Sub-issues progress Project fields are views; GitHub's issue relationship is authoritative. A ticket without a Release parent may receive a standalone audit report, but it does not change release state. Every ticket labelled new feature needs a fresh audit PASS bound to its delivered candidate digest, or an explicit maintainer waiver, before its parent Release can close.

Plumbing: before reading or changing a Project field, follow .claude/skills/release-open-sprint/board-api.md: run the project-scope preflight, discover the current fields, and verify the child's Project item.

Check 1 — i18n coverage (full scan, scripts in this directory)

en.json is the source of truth; runtime silently falls back to English, so gaps are invisible without this.

  1. node .claude/skills/release-feature-audit/audit.mjs --root <repo-root> > /tmp/i18n-report.json (add --strict only on request — noisy). Report contains per-locale missing/orphan/placeholderMismatch + code.missingInEn/deadKeys/dynamicCount.
  2. Auto-fill missing (the ONLY auto-apply): translate each missing key's en value (preserve {placeholder} tokens verbatim), write flat JSON map, then node .claude/skills/release-feature-audit/apply.mjs --root <repo-root> --locale <name> --translations /tmp/<name>.json. Never overwrites existing values.
  3. Report for confirmation: orphan/dead-key deletions, placeholder-mismatch edits, missingInEn bugs (raw key shows in UI), and the dynamicCount blind spot. Deletions/edits need explicit OK. Never commit.

Read the full file on GitHub · 150 lines

Files

What ships with it

8 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. 11d ago First seen · 150 lines · 94 tokens per session scan A cf154f0af3ae

Subscribe to this mod's changes

release-feature-audit is a skill published in the GitHub repository haoxiang-xu/PuPu (36 stars, last pushed today), licensed Apache-2.0. It adds 94 tokens to every session and 2,519 once invoked, about $0.0005 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.