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.
git clone --depth 1 https://github.com/jinzhongjia/decky-musicnpx agentmods add skills/jinzhongjia/decky-music/releaseWrote 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.
[](https://agentmods.dev/skills/jinzhongjia/decky-music/release)<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.
<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>- NVIDIA SkillSpector warn
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.
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.
| Model | Per session | Once 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 |
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/<三个资产>` 与 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-x64、
ncm-provider-linux-x64、qq-provider-linux-x64.tar.gz。算 sha256 填回
package.json 的 remote_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
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.
- 11d ago First seen · 107 lines · 67 tokens per session scan B 6a7f0bcd7929
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.
Other skills, from other repositories
release-announcement
Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.
multi-agent-release-manager
Cleans up the workspace, formats code, runs presubmit checks, and uploads CLs to Gerrit.
release-notes
Generate user-facing release notes from tickets, PRDs, or changelogs. Creates clear, engaging summaries organized by category (new features, improvements, fixes). Use when writing release notes, creating changelogs, announcing product updates, or summarizing what shipped.
pack-submit
Package one of this agent's own skills as a standalone community pack and submit it to the aeon registry as a PR.
updater_guide
Guidance for checking for and installing Row-Bot updates.
nvca-chart-release
Release NVCA Operator chart changes from the native monorepo source to the vendored Helm chart. Use when updating the vendored NVCA Operator chart, changing NVCA image refs, publishing helm-nvca-operator, or validating the chart against a self-managed control plane.