release

release is a skill for Claude Code, Codex from jinzhongjia/decky-music. It costs 67 tokens per session (1,549 once invoked), scanned B, original, MIT.

A release checklist for publishing new versions of the Decky Music project, either as a pre-release or a full release.

In plain words
What is it for?
Use it to decide whether binaries must be rebuilt, update versions and lock files, calculate binary checksums, create a tag and GitHub Release, and check the resulting ZIP files.
Why use it?
It reduces the risk of publishing mismatched version numbers, outdated binaries, incorrect file fingerprints, or broken release links. It also requires a clean, verified project before publishing.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash scripts/build-rust.sh -p player && bash scripts/build-rust.sh -p ncm-provider.

Good fit Use it to decide whether binaries must be rebuilt, update versions and lock files, calculate binary checksums, create a tag and GitHub Release, and check the resulting ZIP files.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/jinzhongjia/decky-music
agentmods
npx agentmods add skills/jinzhongjia/decky-music/release

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/jinzhongjia/decky-music/release/github.svg)](https://agentmods.dev/skills/jinzhongjia/decky-music/release)
Your own site
<a href="https://agentmods.dev/skills/jinzhongjia/decky-music/release"><img src="https://agentmods.dev/badge/skills/jinzhongjia/decky-music/release/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

Your own site · 80×15
<a href="https://agentmods.dev/skills/jinzhongjia/decky-music/release"><img src="https://agentmods.dev/badge/skills/jinzhongjia/decky-music/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,549 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 77
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Privilege Escalation · line 103
    Commands invoke sudo or root privileges. Verify this elevated access is necessary and justified.
    Fix: Avoid sudo/root unless strictly required. Prefer least-privilege patterns. If elevation is needed, document the justification and scope.
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.00067 $0.01549
Opus 5 $0.00034 $0.00775
Sonnet 5 $0.00013 $0.00310
Haiku 4.5 $0.00007 $0.00155

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

Security

Grade B, and why

release scanned grade B with 2 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.

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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

- `dist/` 可能被 sudo 跑的 decky CLI 写成 root 属主 → `pnpm build` EACCES,`chown` 回来

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **CN 版**:R2 上 `curl -fI https://dl.nvimer.org/decky_music/vX/<三个资产>` 与
.agents/skills/release/SKILL.md · 107 lines

How it starts

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

Release 流程

发布前置条件(缺一不发):工作树干净、改动已推送、真机 deploy-verify 已过。

0. 判定发布类型

  • full:player / ncm-provider / qq-provider 代码或依赖有变 → 需重建二进制、更新指纹
  • zip-only:只有 bridge(py_modules)/ 前端(src)/ 文档变 → 二进制沿用上个 tag 的资产, remote_binary 的 URL 和 sha256 保持指向旧 tag 不动(内容没变,不重复上传)

1. 版本号(四处 + 锁文件)

新版本号记为 X(如 1.0.0-beta.3),tag 为 vX:

sed -i 's/"version": "旧"/"version": "X"/' package.json
sed -i 's/^version = "旧"/version = "X"/' player/Cargo.toml ncm-provider/Cargo.toml qq-provider/pyproject.toml
cargo update -p player -p ncm-provider --offline          # 同步 Cargo.lock
(cd qq-provider && uv lock)                               # 同步 uv.lock

2. full 才做:重建二进制 + 指纹

bash scripts/build-rust.sh -p player && bash scripts/build-rust.sh -p ncm-provider
bash scripts/build-qq-provider.sh     # Nuitka,慢(约 7 分钟);别用 unittest discover 预检(登录用例联网挂死)
ldd target/release/player             # 命门:除基础 libc 外只允许 libasound

资产名固定(Decky 按 remote_binary[].name 存文件):player-linux-x64ncm-provider-linux-x64qq-provider-linux-x64.tar.gz。算 sha256 填回 package.jsonremote_binary[].sha256hash,URL 改成 tag 钉死: releases/download/vX/<asset>(pre-release 不能用 latest,会 404)。

3. 提交、tag

git add -A && git commit -m "chore(release): vX ..."   # zip-only 在提交信息里注明二进制沿用哪个 tag
git push && git tag vX && git push origin vX

4. GitHub Release

# pre-release 加 --prerelease;full 上传三个二进制资产,zip-only 不带资产
gh release create vX [--prerelease] --title "vX" --notes-file <notes.md> [assets...]

发布说明只保留:

  • 改动:从 git log v旧..HEAD --oneline 提炼用户可感知的要点,不要逐条抄 commit。
  • 安装:普通版用 Decky.Music.zip;CN 版通过 Decky Manual Plugin Install 安装 https://dl.nvimer.org/decky_music/decky-music-cn.zip;网络受限时用自包含的 Decky.Music.full.zip

不写体验、依赖、致谢或开发背景。

5. CI 出包 + 抽验(必做)

release.yml 监听 release published,用官方 Decky CLI 打 Decky.Music.zip 传回资产:

RUN=$(gh run list --workflow=release.yml --limit 1 --json databaseId --jq '.[0].databaseId')
gh run watch $RUN --exit-status
gh release download vX -p "Decky.Music.zip" -D <tmpdir> && cd <tmpdir> && unzip -q Decky.Music.zip

Read the full file on GitHub · 107 lines

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 · 107 lines · 67 tokens per session scan B 6a7f0bcd7929

Subscribe to this mod's changes

release is a skill published in the GitHub repository jinzhongjia/decky-music (119 stars, last pushed 7d ago), licensed MIT. It adds 67 tokens to every session and 1,549 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.