nvidia/release-audit
Generate a Warp release audit report (pre-release or RC, auto-detected from version string and head ref).
npx skills add https://github.com/NVIDIA/warp --skill release-audit
Generates a markdown audit of the upcoming Warp release for keep/defer decisions. Runs in two modes (auto-detected): a pre-release spot-check while work is still landing on main, or a release-candidate readiness review after the release branch is cut.
Output: a single markdown report, filed according to the destination chosen in Phase 1:
gh is available and authenticated): stable filename warp-<version-string>-<prerelease|rc>-report.md, stable description Warp <version-string> <Pre-Release|Release Candidate> Report. Later runs against the same version revise the same gist in place; prior versions are preserved in the gist's git history.gh unavailable, or opt-in when gh available): dated path at $(git rev-parse --show-toplevel)/warp-<version-string>-<prerelease|rc>-report-<YYYY-MM-DD>.md. Not auto-committed; user moves, shares, or deletes as desired.Inputs inferred from repo state:
warp/config.py / warp/__init__.py / VERSION.md.vX.Y-prev.*, latest patch).upstream/release-<target> if it exists, else upstream/main.Reference documents to load on demand (via Read):
references/report-template.md — fill this in during Phase 6b (the {{HEADLINE_SUMMARY}} placeholder is drafted in Phase 6a).references/render-rules.md — URL shapes, signature/docstring code-block forms, table column specs, audit-appendix conditional, and output-style hard constraints. Loaded in Phase 6b.references/classification-rules.md — path/symbol rules used in Phases 3-5.references/language-review-examples.md — Phase 5a calibration for the CHANGELOG Review Notes appendix.scripts/diff_public_api.py — deterministic JSON fact extractor for Phase 4e public runtime/stub API diffs.warp/config.py (version = "..."), then warp/__init__.py (__version__ = ...), then VERSION.md. Parse to extract the target minor (e.g., 1.13.0dev0 → target 1.13) and determine the report mode:"rc" (e.g., 1.13.0rc1) → RC mode: this is a release-candidate readiness report."dev" (e.g., 1.13.0dev0) → Pre-release mode: this is an early-stage audit of unreleased work.(major, minor) (e.g., 1.13.0dev0 → (1, 13)). Enumerate previous-minor tags: git tag --list 'v<major>.<minor - 1>.*' --sort=-v:refname
Take the first result as the base candidate. Major-boundary fallback: if minor == 0 (e.g., target (2, 0)), there is no v2.-1.* line. In that case, enumerate tags from the previous major instead: git tag --list 'v<major - 1>.*' --sort=-v:refname, and take the highest as the base candidate. Always use integer math on the parsed (major, minor) tuple; never treat the dotted version string as a float (1.13 - 0.1 is not 1.12).
git rev-parse --verify upstream/release-<target>
If this succeeds, head = upstream/release-<target> and this is also a strong signal for RC mode (the branch-cut has happened). Otherwise try origin/release-<target>; otherwise head = upstream/main (falling back to origin/main, then main) which is pre-release mode. Record whichever fallback was used for the report header.
gh availability and look up any existing matching gist.First run:
gh --version && gh auth status
If either fails → gh unavailable; destination will be a local markdown file only; skip the rest of this step.
Both succeeded → compute the stable gist title for this report:
Warp <version-string> <Pre-Release|Release Candidate> Report
(e.g., Warp 1.13.0rc1 Release Candidate Report, Warp 1.13.0dev0 Pre-Release Report). No date. The gist filename and description are stable so later runs can find the same gist and revise it; gist git history preserves prior versions automatically.
Run gh gist list --limit 1000 and filter rows whose description exactly matches that stable title. Capture the matching gist IDs; display URLs are https://gist.github.com/<id>. Record the match count (0, 1, or N ≥ 2) for step 6.
Lead with the mode-specific intro line:
Generating pre-release report for Warp <version>. Base <base-ref> → Head <head-ref>. <N> commits in range.Generating release-candidate report for Warp <version>. Base <base-ref> → Head <head-ref> (release branch cut). <N> commits in range.Append the output block for the current gh / match state:
gh unavailable:
> Output: markdown file at repo root (gh not available). Confirm, or specify different refs?
gh available, 0 matches:
> Output: (a) new secret gist [default], (b) local markdown file at repo root. Confirm refs + pick.
gh available, 1 match:
> Output: (a) revise existing gist <url> [default], (b) new secret gist, (c) local markdown file at repo root. Confirm refs + pick.
gh available, N matches (N ≥ 2):
> Multiple existing gists share the stable title:
> 1. <url-1> — updated <time-1>
> 2. <url-2> — updated <time-2>
> ...
>
> Output: (a) revise gist by number, (b) new secret gist, (c) local markdown file at repo root. Confirm refs + pick.
Do not run any further phase until the user confirms refs and (when gh is available) chooses destination. Translate the user's reply into exactly one of the destination tokens local, new-gist, revise-gist:<id> and record it for Phase 6c. Letters (a), (b), (c) are positional within the current branch's prompt, not global: resolve them against the option list you just showed the user. For the N-match branch, the user picks a gist by the number you listed (e.g., "revise 2" → revise-gist:<id-of-listed-row-2>), or says new / local.
<skill-dir> to the directory containing the currently loaded SKILL.md for this skill (for example, <repo>/.claude/skills/release-audit or <repo>/.codex/skills/release-audit). Do not hardcode .claude or .codex; the skill content must work from either tree. Run the commit-list tool via uv run as a single command: uv run "<skill-dir>/scripts/list_commits.py" \
--base <base-ref> \
--head <head-ref> \
--report-date "$(date +%F)" \
--main-ref <resolved-main-ref>
Use $(date +%F) literally so the shell supplies today's date; do NOT substitute a date you generated yourself, since training-time bias can produce stale days_since_merge / days_in_main values. Capture stdout as the commit_list_json.
CHANGELOG.md from the selected <head-ref>, not from the current working tree: git show <head-ref>:CHANGELOG.md
Locate the ## [Unreleased] header in that output. Collect all content from that header up to (but not including) the next ## [X.Y.Z] header.
### Added, ### Removed, ### Deprecated, ### Changed, ### Fixed, or ### Documentation. For every bullet under each subsection, extract:GH-(\d+) over the bullet text. Dedup.Breaking: in the bullet.commit_list_json) whose gh_refs intersect.CHANGELOG.md: git log --reverse -S'<distinctive substring from the entry>' --format='%H|%s|%cs' -- CHANGELOG.md
The first commit whose subject isn't a CHANGELOG-only edit (e.g., not "Clean up changelog", not a version bump) usually IS the code change associated with the entry. Record that as the backing commit.
For each CHANGELOG Added entry, extract the named symbol(s) (text in backticks matching wp.*, @wp.*, or patterns like ClassName).
For EACH named symbol, check if it existed at base:
wp.X: look at git show <base>:warp/__init__.py — does it re-export X?wp.submodule.X (e.g., wp.config.track_memory): read the submodule source at base.@wp.kernel, @wp.struct, @wp.func decorator-style: check warp/__init__.py at base.warp/_src/builtins.py): check if the builtin was registered at base via git show <base>:warp/_src/builtins.py | grep '"<name>"'.Classification:
If an entry mentions multiple symbols where some are new and some pre-existed (e.g., "Add wp.ScopedMemoryTracker and wp.config.track_memory"), split: the genuinely new symbols each get a New API entry; the extensions to existing symbols each get a Changes entry.
For each Python-scope symbol confirmed as new:
warp/__init__.py re-exports at HEAD.ast.parse the source module; find the FunctionDef / ClassDef.ast.get_docstring(node).For each kernel-scope builtin confirmed as new:
warp/_src/builtins.py at HEAD. Find the add_builtin("<name>", ...) call.add_builtin() registration call itself. Instead, SYNTHESIZE a Python-function-style signature from its arguments:input_types= or inputs= (or positional args) becomes a function parameter with type annotation.value_type or output arg (or return value) becomes the return annotation.tile(dtype=...), vector(length=N, dtype=...)) as they appear — this is the user-facing form. tile_fft(inout: tile(dtype=vector(length=2, dtype=Float), shape=tuple[int, ...])) -> None
NOT:
add_builtin("tile_fft", input_types={"inout": tile(...)}, ...)
doc= parameter of add_builtin(). Render verbatim as a blockquote.<symbol> in source — verify entry names a real public symbol." Do not fabricate a header like wp.*(no symbol)*. Use the entry's natural subject as the section title.wp.* name.wp.tile_scatter_add) OR short descriptive titles extracted from the entry. Never wp.*, wp.(something), or similar stub patterns.For each CHANGELOG entry in Changed / Removed / Deprecated (plus any "capability extension" entries routed here from 4a):
diff block showing - and + lines.Breaking:: skip the diff block; include the backing commit's URL and the full CHANGELOG text.- line; omit +.Deprecation-window lookup for Removed entries. For every Removed entry (and every Changed entry whose prose describes a removal), search CHANGELOG.md for the matching prior Deprecated entry:
## [Unreleased]) top-down for a ### Deprecated bullet that names the same symbol(s) OR the same GH ref. The FIRST such entry (highest version, since CHANGELOG is reverse-chronological) is the deprecation introduction.1.11.0), (b) the full Deprecated entry text.Deprecated in X.Y.Z; removed here. Do NOT fabricate a version if no prior entry is found.Missing-deprecation flag. If a Removed entry has no prior Deprecated entry in any released CHANGELOG section, surface this prominently in the Breaking Changes section as 🚨 Policy: removed without prior deprecation, not a quiet "verify please" line. The release manager needs this to block the release or add migration tooling. If the current CHANGELOG's own ### Deprecated section also includes the same symbol, note that this is a simultaneous deprecate-and-remove, which is itself a policy violation (the deprecation window is meant to ship in an earlier release than the removal).
The deprecation window belongs in BOTH the Breaking Changes entry for the removal AND the Changes-to-Existing-API row (in the Description cell or as an appended sentence in the detail block). A reader should never have to ask "was this deprecated first, and for how long?"
Independently of CHANGELOG content, compute the public API surface at base vs. HEAD. Prefer the deterministic helper for fact extraction, then use judgment only for report classification and wording.
git show <base-ref>:warp/__init__.py → parse with ast. Resolve each re-export's real signature at base. Also apply to warp/_src/builtins.py for kernel builtins. If git show fails (file absent at the base ref, e.g. older releases predating the warp/_src/ layout) or ast.parse raises, skip the signature-diff check for that file and emit: "Cannot perform signature-diff check: base is too old or lacks public API exports."git show <head-ref>:warp/__init__.py and git show <head-ref>:warp/_src/builtins.py), consistent with Phase 2's "at HEAD" reads. Not the uncommitted working tree. Apply the same skip-and-emit fallback if either file is missing or unparsable at the head ref.warp/__init__.pyi and any matching public-module .pyi files for every runtime module included in this phase. Parse with ast when possible and compare public functions, classes, methods, overload variants, module-level annotated attributes, and exported aliases. A symbol, overload, method, or attribute that was present in a base public stub and absent at HEAD is a public stub removal. Surface it in Breaking Changes and Changes to Existing API even if the runtime implementation did not change, because stubs are the type-checker and IDE-facing public API. If no matching CHANGELOG entry carries Breaking:, label it as an unlabeled public stub removal.warp.<name>, warp.<name>.<submodule>, wp.<name>, and topic-style module names such as warp.fem, warp.optim.linear, warp.jax, or warp.jax_experimental. For each referenced public submodule:warp.fem → warp/fem/__init__.py, warp.optim.linear → warp/optim/linear.py).from warp._src.fem... import X as X). Include source modules changed by the backing commit(s) when the public package re-exports a broad namespace and the CHANGELOG entry names the package rather than a specific symbol.ast at base and HEAD. Compare public functions, public classes, class __init__ signatures, and public methods whose names do not start with _. Do not scan unrelated private modules just because they are under warp/_src; the submodule must be named by the CHANGELOG entry or reached through that submodule's public re-export path.Run the helper after building the module list (always include warp, then add each public submodule from the previous bullet):
uv run "<skill-dir>/scripts/diff_public_api.py" \
--base <base-ref> \
--head <head-ref> \
--module warp \
--module <public-submodule>
Repeat --module once per module and omit the placeholder line when there are no submodules. Capture stdout as api_diff_json.
For each api_diff_json.changes[] item:
kind == "signature_change" with reasons such as inserted_positional_parameter, positional_to_keyword_only, removed_parameter, reordered_parameter, or new_required_parameter → add to Breaking Changes when the matching CHANGELOG entry (if any) does not carry Breaking:, and add/merge a Changes-to-Existing-API row.kind == "public_stub_removal" → add to Breaking Changes and Changes to Existing API even when runtime source is unchanged. If no matching CHANGELOG entry carries Breaking:, label as an unlabeled public stub removal.api_diff_json.warnings[] is non-empty, surface a concise audit note that the helper could not parse that module/path, then fall back to manual AST inspection for that path. Do not silently skip a warning.Signature compatibility rule. When comparing Python signatures, treat parameter order and kind as part of the public contract:
self / cls for methods.* (a positional-to-keyword-only move) is breaking for positional callers.diff block and a short before/after call example showing how positional callers should migrate to keywords.Exception: Removed symbols are breaking by definition. A symbol that appears in CHANGELOG's Removed section does NOT need a Breaking: marker to be valid. Do NOT flag Removed entries as "unlabeled breaking" — the section name itself communicates the breakage. Removed entries surface in the Breaking Changes callout and in the Changes-to-Existing-API section (as "removed" kind), but the report must not whinge about missing Breaking: labels on them.
Independently inspect deprecated compatibility paths for newly introduced exceptions. This catches breaks in old import paths or wrappers that still exist only to warn and forward callers to a replacement API.
deprecated, deprecation, compat, compatibility, backcompat, or a deprecated namespace name.Deprecated, Removed, or migration-style CHANGELOG entries.warp.jax_experimental shim forwarding to warp.jax).raise statements, changed exception types or messages, stricter guard conditions before forwarding/delegation, removed try/except fallbacks, and import-time errors added to a path that previously warned and delegated.semantic change and description new exception in deprecated compatibility path.For each commit in commit_list_json that touches warp/_src/codegen.py OR any path under warp/native/**:
Breaking: (it's already in Breaking Changes).git show --stat <sha> then git show <sha> for small diffs, or read specific hunks for large ones.uv run build_lib.py --quick (~2-4 min) if not already built. If a build is already current, skip.git worktree add is useful here to avoid disturbing HEAD. Alternatively, git-stash + checkout + build + stash-pop./tmp/ (never commit). Example for a numerical-algorithm change: a small kernel that applies the changed op to a fixed input and prints the result. Example for a codegen change: a kernel whose emitted code should differ; compare via wp.get_module().save_kernel_source(...) or equivalent introspection.Never punt with "please verify". If a candidate is ambiguous, either verify it by running code or drop it. Unverified flags do not land in the report.
Never produce an unexamined list of candidates. Every Breaking Changes entry either has explicit CHANGELOG backing, a signature-diff detected shape change, a public stub removal, a new exception in a deprecated compatibility path, or assistant-verified behavioral evidence.
Some symbols are shipped with an explicit Experimental marker in the CHANGELOG entry that introduced them. Changes to those symbols do NOT carry the same stability contract as changes to stable APIs: the whole point of the marker is to reserve the right to break them. The report must reflect that so the release manager does not over-weight the concern.
For each entry in Breaking Changes, Changes to Existing API, and Removed (as collected through 4a–4g), determine whether the affected symbol or feature area is currently experimental:
## [Unreleased]) for bullets that both carry Experimental (bold, with or without trailing colon) AND name one of the candidates from step 1. Also match via GH ref if the current entry and a prior experimental entry share a GH number.wp.Foo out of experimental", "Stabilize wp.Bar"), the symbol is still experimental. Record: (a) the release version that introduced the symbol as experimental, (b) the full text of that introduction bullet... experimental / Experimental: / experimental_api / @experimental annotation on the symbol's declaration. If present, treat as experimental regardless of CHANGELOG signal.Tag every matched entry internally as experimental=True. Do not alter the CHANGELOG text itself.
How the tag changes rendering:
⚠️ Experimental: rather than the implicit "Breaking" framing. Include a short sentence reminding readers this symbol is opt-in and documented as experimental, with the release where the experimental marker was introduced.Experimental rather than Yes, even when the change is technically source-breaking.⚠️ Experimental: as the risk prefix, not ⚠️ Breaking:. The rationale sentence should mention the stability bar, not lead with migration urgency.Never drop the entry. Experimental softening is about alarm level, not suppression. The reader still needs to see what changed. A removed or signature-changed experimental symbol still appears in Changes to Existing API; the softening only adjusts tone and the risk-prefix glyph.
Read references/language-review-examples.md. For EACH CHANGELOG entry, apply LLM judgment:
gh --version and gh auth status both succeed, run gh issue view <num> --json title,body per ref and compare issue title to entry topic. Skip silently if gh unavailable.warp._src.*), C++/CUDA type names (launch_bounds_t, tile_register_t), private identifiers.Record flagged entries. Keep the FULL entry text in the audit table — do not truncate.
Pre-release mode (resolved.head.sha == resolved.main_ref.sha). Every commit's main equivalent is itself, so days_in_main == days_since_merge and the bake distribution would just restate the age histogram. Render an "Age distribution" table from days_since_merge (same 🟢/🟡/🟠 thresholds), label the column "Days since merge", and skip both the "Bake distribution" table and the anomaly banner. There is no meaningful "didn't bake on main" condition when head IS main.
RC mode (resolved.head.sha != resolved.main_ref.sha). Partition commits by main_match_state:
state == "unique": bucket by days_in_main into 🟢 (>14 days), 🟡 (7–14 days), 🟠 (<7 days).state == "missing": subject not present on main_ref. These shipped to the release branch without a main-side bake. Before reporting them, filter out routine release-branch artifacts that the release manager already expects: commits whose subject matches Set version to <X>, Bump version to <X>, or Release <X> AND whose file changes are confined to version-bump paths (VERSION.md, warp/config.py, warp/native/version.h, docs/conf.py, pyproject.toml, asv/tag_commits.txt, tools/pre-commit-hooks/check_version_consistency.py). These are expected to live only on the release branch; surfacing them as a banner is noise, not signal. Count remaining missing commits (post-filter) separately and, if non-zero, fire the ⚠️ banner in the report header listing them. If the filter removed any commits, optionally note them as a quiet footnote under the bake table (e.g., K version-bump commits not present on main — expected for a release branch); do not call them out at the same alarm level as a real bake gap.state == "ambiguous": subject appears more than once on main_ref (typical for Revert "...", Bump version, or replayed cherry-picks). The commit IS on main; the script just could not pick a single canonical occurrence. Render as a separate row in the bake table labeled "⚪ ambiguous main match: K commits" and DO NOT fire the banner. These are not a bake-gap signal.If resolved.empty_main_index == true, the bake table is meaningless: every commit will resolve as missing. Render only days_since_merge stats and surface the empty-main-index condition prominently in the report header (e.g., "main_ref <ref> had no commits in <base>..<main_ref> — main bake unverifiable") instead of firing the routine bake-gap banner.
Never compare a days_in_main of null (emitted for both missing and ambiguous) to the numeric thresholds.
Before filling the template, synthesize the {{HEADLINE_SUMMARY}} section. This is the only part of the report that requires qualitative judgment rather than mechanical rendering. Everything else flows from the cross-reference and classification work in Phases 3-5; this step picks what a reader should know *first*.
What the summary is (and isn't):
How to pick items. Select 4 to 8 bullets from the material already analyzed (New API, Breaking Changes, Changes to Existing API, Behavioral & Support, Removed). Use LLM judgment. An item belongs in the highlights if at least one of these is true:
Experimental marker (readers need to know the stability bar).An item does NOT belong in the highlights if any of these is true (drop even if the CHANGELOG entry is present):
Aim for 4-8 bullets total. Fewer than 4 almost always means you missed a theme; more than 8 means you listed changes instead of highlights.
How to write each bullet. Each bullet leads with a bold 2-6 word headline, then a colon, then one sentence of rationale that explains what it is and why it matters. Attach risk flags inline when they apply: prepend ⚠️ Breaking: or ⚠️ Experimental: to the headline where relevant, and append a bake hint (🟠 N days bake.) when the headline item's minimum bake is under 7 days. Example:
> - ⚠️ Breaking: wp.tid() flattens excess dimensions (GH-1270): kernels that unpack fewer values than launch dimensions now receive a flat index; release post needs a migration snippet.
Lead with the unlock, not the mechanism. The rationale sentence should answer "what is newly possible, and why would a user care?" — not "what API names were added." API names are a detail; novel capability is the story. If a feature introduces a new artifact or format (a file format, wire protocol, cross-language boundary, new kind of object), NAME that artifact and state what it unlocks. Do not reduce the feature to the function that produces it.
Negative example (what NOT to do) — based on a real miss from an earlier report on the graph-capture feature:
> - Graph capture serialization + CPU replay (GH-1349): preliminary capture_save / capture_load to .wrp files with new wp.handle scalar for mesh-handle remapping; CPU graph capture gains real replay.
This bullet mentions the .wrp extension in passing but misses the actual story: .wrp is a new portable serialized-graph format, and the same file can be loaded from standalone C++ (not just Python), which is the unprecedented capability. A reader skimming for headline material sees "save and load" and moves on.
Better shape:
> - Graph capture serialization + CPU replay (GH-1349): introduces .wrp, a portable serialized-graph format that can be captured in Python (capture_save) and replayed from either Python or standalone C++ (capture_load), plus a new wp.handle scalar for mesh-handle remapping across load. CPU graph capture gains a real replay path in the same pass.
Same work, but a reader learns that there's a new interchange format and a Python-to-C++ bridge. When picking the leading noun for your rationale, ask: if this feature were being pitched in a 30-second release-notes overview, what is the single thing a user would want to hear? Write THAT, and let the API names ride along as supporting detail.
GH refs MUST be hyperlinks, always. Every GH-NNNN in a highlight bullet is a markdown link to https://github.com/NVIDIA/warp/issues/NNNN. This applies even when a single bullet combines multiple GH refs. Do NOT use shortcuts like (multiple GHs), (GH-1287, GH-1298, ...) in plain text, or (see CHANGELOG). If the bullet covers six issues, render all six as individual links, either inline ((GH-1287, GH-1298, GH-1335)) or in a trailing parenthesis at the end of the headline. There is no upper limit on link count; a reader can scan links but cannot resolve plain numbers.
Experimental softening. If Phase 4h tagged an entry as experimental, the highlight bullet uses ⚠️ Experimental: as its risk prefix rather than ⚠️ Breaking:, even if the change is technically source-breaking. The rationale sentence should lead with what changed and its stability bar, not with migration urgency; readers already know experimental APIs can shift.
Open the summary with a 2-3 sentence intro paragraph that names the shape of the release in plain language. This sets the tone for everything below it. Do not stuff the intro with numbers or repeat the bake distribution.
Output style rules apply here too. No em dashes. No skill-internal terminology ("Phase 4f"). No "end of summary" markers. The summary reads as release-note input, not as an audit artifact.
Read references/report-template.md. Fill in every {{PLACEHOLDER}} marker, including the {{HEADLINE_SUMMARY}} produced in 6a.
Read references/render-rules.md and apply every rule there: URL shapes, signature + docstring code-block forms, table column specs, audit-appendix conditional, and the output-style hard constraints (no em dashes, no skill-internal terminology, no terminal markers, every GH ref hyperlinked, no Phase names).
The destination was decided in Phase 1: one of local, new-gist, or revise-gist:<id>. Act on that choice.
Filename conventions:
warp-<version-string>-<prerelease|rc>-report-<today>.md — dated, user-facing.warp-<version-string>-<prerelease|rc>-report.md — no date. Stable name so later runs can revise the same gist in place.Stable gist description (used when creating a new gist; also the matching key for Phase 1):
Warp <version-string> <Pre-Release|Release Candidate> Report
If destination is local:
$(git rev-parse --show-toplevel)/<local-filename> using the Write tool.If destination is new-gist:
/tmp/<gist-filename> (stable name, no date) using the Write tool. gh gist create --desc "<stable-desc>" /tmp/<gist-filename>
Capture the gist URL from stdout.
/tmp/<gist-filename> so no local artifact remains.If destination is revise-gist:<id>:
/tmp/<gist-filename> (same stable name the existing gist already uses) using the Write tool. gh gist edit <id> --filename <gist-filename> /tmp/<gist-filename>
The --filename flag selects which file *inside the gist* to replace; the trailing local path supplies the new content. Without --filename, gh treats the local path as a gist-side filename selector, fails to find it, and falls through to its interactive editor. Do NOT pass --desc: keeping the description stable is what lets the next run match this gist again. Prior versions of the file are preserved automatically in the gist's git history.
/tmp/<gist-filename>.https://gist.github.com/<id>).Never pass --public. Never file a destination the user did not choose.
\bGH-(\d+) — word boundary prevents matching inside other identifiers.Breaking: (with the colon).## [Unreleased] — may have trailing date text; match prefix only.### Added, ### Removed, ### Deprecated, ### Changed, ### Fixed, ### Documentation.wp.X, wp.X.Y, @wp.X, or bare ClassName (capitalized identifier). The FIRST backtick-quoted symbol in the bullet is usually the primary subject.git log -S: surface in the CHANGELOG Entries Without Matching Commits appendix with reason "no associated commit found, verify".Added entry names a symbol not resolvable at HEAD: render with a ⚠️ note; do NOT emit synthetic wp.* stub names.upstream/ remote missing: substitute origin/. Note the substitution in the report header.[Unreleased] missing or empty: header warns: "No [Unreleased] entries found in CHANGELOG.md."gh installed but not authenticated: treat as gh unavailable; skip gist matching and gist prompt; add one-line chat note.Take nvidia/release-audit from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.