pixiv-cli-release-notes

pixiv-cli-release-notes is a skill for Claude Code, Codex from FlanChanXwO/pixiv-cli. It costs 63 tokens per session (1,338 once invoked), scanned A, original, MIT.

A release-management guide for pixiv-cli, a command-line tool, covering release audits, bilingual notes, version tags, and GitHub Release updates.

In plain words
What is it for?
Use it to audit a version range, write and validate Chinese and English release notes, publish authorised tags, monitor releases, and synchronise older GitHub Release descriptions.
Why use it?
It helps prepare release information from real changes while keeping tags and historical release notes consistent. It also separates review steps from actions that publish changes.

Skill for Claude CodeCodex

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

Not installable on its own: it runs a file from its repository that does not travel with it. Clone the repository, or install whatever ships that file. The line is go run ./scripts/cmd/releasenotes audit \.

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

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 pixiv-cli-release-notes

README.md
[![agentmods](https://agentmods.dev/badge/skills/flanchanxwo/pixiv-cli/pixiv-cli-release-notes.svg)](https://agentmods.dev/skills/flanchanxwo/pixiv-cli/pixiv-cli-release-notes)
Your own site
<a href="https://agentmods.dev/skills/flanchanxwo/pixiv-cli/pixiv-cli-release-notes"><img src="https://agentmods.dev/badge/skills/flanchanxwo/pixiv-cli/pixiv-cli-release-notes.svg" alt="Measured on agentmods" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,338 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.1 $0.00063 $0.01338
Opus 5 $0.00032 $0.00669
Sonnet 5 $0.00013 $0.00268
Haiku 4.5 $0.00006 $0.00134

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

Security

Grade A, and why

pixiv-cli-release-notes 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 6d 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.

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.

.agents/skills/pixiv-cli-release-notes/SKILL.md · 90 lines

How it starts

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

pixiv-cli Release Notes 与发布

普通 PR 使用 pixiv-cli-pr。本技能从合并后的来源审计开始,负责双语版本说明、tag 发布和下游 handoff。先读 AGENTS.mddocs/zh-CN/maintainers/development.md 和现有 locale 的 CONTRIBUTING

授权与不可变边界

  • 检查、审计、preview、validate 和 review 默认只读。
  • 创建或更新 PR、push、merge、写入 changelog、创建或推送 tag、创建或编辑 Release、执行 sync-history --apply 前,要取得用户对该动作的明确授权。
  • release-prep、tag 和发布授权必须明确给出版本、commit/tag 范围和预期影响。版本建议不等于授权。
  • 不把 GH_TOKEN、refresh token、Cookie、私有 URL、下载内容或 API 响应写入 argv、日志、PR、changelog、artifact 或输出。
  • .github/workflows/release.yml 只由 push.tags: v[0-9]* 触发。不要手工 dispatch release workflow,不要移动旧 tag,也不要用默认分支内容覆盖不可变 tag。

普通 PR

  • 使用 .github/PULL_REQUEST_TEMPLATE.md,只保留改动、验证和检查清单。
  • 用户可见的 CLI、MCP、SDK、config、workflow 或安全语义变化在同一 PR 同步文档。
  • 不在 PR 正文添加 release category、breaking、summary 或其他隐藏字段,也不编辑 changelog/unreleased/

审计与编写

  1. 确认候选范围并把审计报告写到本地临时目录或 CI 的 $RUNNER_TEMP

    audit_report="$(mktemp -t pixiv-cli-release-audit.XXXXXX.json)"
    go run ./scripts/cmd/releasenotes audit \
      --repo FlanChanXwO/pixiv-cli \
      --from vPREVIOUS \
      --to COMMIT_OR_TAG \
      --output "$audit_report"
    

    审计只收集真实 PR/direct-commit 来源、标题、作者和首次贡献者,不读取 PR body,也不推断分类或 SemVer。报告是临时输入,不提交仓库。

  2. 逐项检查审计来源,结合实际兼容性和最终章节决定版本。获得精确版本和写入授权后,直接创建或编辑:

    changelog/vX.Y.Z/en.md
    changelog/vX.Y.Z/zh-CN.md
    

    使用适用的 Breaking changesAddedChangedFixedSecurityDocumentationMaintenance 章节。每个条目描述结果并附真实 PR 或 commit 链接;没有用户可见影响的来源放进 Maintenance,多个内部改动可以合并成一条。

  3. 两种语言必须覆盖相同的来源集合。审计范围内的每个来源都要出现,范围外来源不得混入;同一来源可以与相关来源合并到一个条目,但不能遗漏。首次贡献者只使用审计结果,不猜测作者身份。

  4. 更新 changelog/README.mdchangelog/README.zh-CN.md 的版本入口,然后校验:

    go run ./scripts/cmd/releasenotes validate \
      --version X.Y.Z \
      --dir changelog/vX.Y.Z \
      --previous vPREVIOUS \
      --audit "$audit_report"
    go test ./scripts/internal/releasenotes ./scripts/tests/documentation -count=1
    git diff --check
    

    validate 检查双语格式、章节顺序、compare footer 和完整来源集合。release-prep PR 仍使用普通三段式模板,不附带中间 plan 或机器可读 metadata。

Read the full file on GitHub · 90 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. 6d ago First seen · 90 lines · 63 tokens per session scan A b77ab95821ed

Subscribe to this mod's changes

pixiv-cli-release-notes is a skill published in the GitHub repository FlanChanXwO/pixiv-cli (130 stars, last pushed yesterday), licensed MIT. It adds 63 tokens to every session and 1,338 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.