ccpocket: Skill for Claude Code

.claude/skills/release-card/SKILL.md

release-card is a skill for Claude Code, Codex from K9i-0/ccpocket. It costs 121 tokens per session (1,089 once invoked), scanned A, original, MIT.

A workflow for creating English and Japanese release-announcement images from an app's latest version and store release notes. A release card is a visual summary of what changed in a new app version.

In plain words
What is it for?
Use it after an app release to inspect the latest tags and notes, generate versioned release-card images, and review the English and Japanese results.
Why use it?
It avoids making announcement artwork from uncertain or mismatched version information. It also checks the notes and tags before generating the images.

Skill for Claude CodeCodex

Written for Claude Code and Codex: installed under .claude/, but also agents/openai.yaml present. Also seen: mentions Claude Code; mentions Codex.

This is K9i-0/ccpocket's own configuration. It tells Claude Code and Codex how to work on ccpocket 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 ccpocket configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node scripts/release-card/generate.mjs --version <X.Y.Z>.

About the project

CC Pocket is a mobile and desktop client for controlling Codex and Claude coding-agent sessions through a self-hosted Bridge Server running on another computer. It lets users start sessions, approve actions, answer questions, review changes, and continue coding from supported devices. The catalogue entries provide the skills, hooks, MCP servers, agents, instructions, and settings used by this client.

K9i-0/ccpocket · 1,065 stars · on GitHub · k9i-0.github.io

Reuse

Borrowing it

Nothing to install: this file belongs to K9i-0/ccpocket. 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/K9i-0/ccpocket/main/.claude/skills/release-card/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/K9i-0/ccpocket

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-card

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/k9i-0/ccpocket/release-card"><img src="https://agentmods.dev/badge/skills/k9i-0/ccpocket/release-card.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 121 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,089 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.00121 $0.01089
Opus 5 $0.00060 $0.00544
Sonnet 5 $0.00024 $0.00218
Haiku 4.5 $0.00012 $0.00109

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

Security

Grade A, and why

release-card 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 9d 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.

.claude/skills/release-card/SKILL.md · 99 lines

What it actually says

Release Card

ccpocket のリリース告知用画像を、最新タグとストア用リリースノートから生成する。

ワークフロー

1. 最新リリース情報を確認

最新タグと現在のアプリバージョンを確認する。

git tag -l 'ios/v*' 'android/v*' 'macos/v*' --sort=-v:refname | head -10
grep '^version:' apps/mobile/pubspec.yaml

原則として最新タグの vX.Y.Z をカードのバージョンに使う。タグが ios/v1.86.1+148 のように build number を含む場合、画像表示とファイル名には 1.86.1 を使う。

タグと apps/mobile/pubspec.yaml のバージョンが一致しない、複数プラットフォームの最新タグがずれている、またはどのバージョンで作るべきか判断できない場合は、作業前にユーザーへ確認する。

2. リリースノートを確認

英語・日本語のリリースノートを読む。

sed -n '1,160p' apps/mobile/fastlane/metadata/en-US/release_notes.txt
sed -n '1,160p' apps/mobile/fastlane/metadata/ja/release_notes.txt

必要に応じて最新タグとの差分も確認する。

git log <latest-tag>..HEAD --oneline -- apps/mobile/ CHANGELOG.md

リリースノートが空、古そう、英日で内容が大きく食い違う、または画像に入れる文言の要約方針が曖昧な場合は、生成前にユーザーへ確認する。

3. 画像を生成

既存の生成スクリプトを使う。

npm run release-card

タグ由来のバージョンを明示したい場合は、直接スクリプトを実行する。

node scripts/release-card/generate.mjs --version <X.Y.Z>

出力先は docs/images/。ファイル名は蓄積運用のため、必ずバージョンを含む形式にする。

docs/images/release-card-v<X.Y.Z>-en.png
docs/images/release-card-v<X.Y.Z>-ja.png

4. 生成画像を確認

生成後、英語版・日本語版の両方を view_image で確認する。

確認観点:

  • タイトルとバージョンが正しい
  • Claude Code ではなく Claude 表記になっている
  • Codex / Claude / Self-hosted のようなラベルが残っていない
  • すべての変更点が画像内に収まっている
  • テキストがカードからはみ出していない
  • 文字が小さすぎず、Xのタイムライン上でも読める
  • 余計なインストール手順・URL導線が入っていない
  • 英日でレイアウト密度が破綻していない

5. 不備があればスクリプトを更新

画像に不備がある場合は、出力画像を直接加工せず scripts/release-card/generate.mjs を修正して再生成する。

よくある調整:

  • release notes が長い場合はフォントサイズ・行間・カード高さを調整する
  • 項目数が奇数の場合は最後のカードを横幅いっぱいにする
  • 日本語が詰まりすぎる場合は compact 判定やフォントサイズを調整する
  • 出力名にバージョンが入っていない場合は命名ロジックを修正する

修正後は必ず再生成し、もう一度 view_image で確認する。

6. 完了報告

完了時は以下を簡潔に報告する。

  • 使用したバージョン
  • 生成したPNGパス
  • スクリプトを更新した場合は変更点
  • 実行した検証
Files

What ships with it

1 file 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. 9d ago First seen · 99 lines · 121 tokens per session scan A c1637bebfe1b

Subscribe to this mod's changes

release-card is a skill published in the GitHub repository K9i-0/ccpocket (1,065 stars, last pushed today), licensed MIT. It adds 121 tokens to every session and 1,089 once invoked, about $0.0006 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.

Related

Other skills, from other repositories

npm-publish

Publish the create-cmp CLI to npm as the create-cmp-cli package. Use this when the user asks to "publish create-cmp to npm", "release a new version", "ship create-cmp-cli", "npm publish this", "cut a release", or wants npx create-cmp-cli to work. Runs unattended when a granular npm token is installed in the user's…

kvdm-co-pilot/create-cmp · 150 tokens

flutter

Use when building, structuring, testing or optimizing a Flutter app — feature-first layering, Riverpod 3 or Bloc, typed gorouter, freezed models, a dio data layer, Material 3, jank hunting, widget/golden tests. Targets Flutter 3.44 / Dart 3.12. NOT React Native (that is react-native), NOT Compose Multiplatform (that…

ericrisco/rsc-harness · 91 tokens

release-process

Step-by-step release checklist for Squad — prevents v0.8.22-style disasters.

dotnet/maui-labs · 20 tokens

release-app-store-changelog

Create user-facing App Store release notes from git history. Use when asked to generate release changelog, App Store "What's New" text, or release notes based on git tags.

patrickserrano/lacquer · 42 tokens

build-release-engineer

!cat skills/shared/game-visual-foundations.md 2>/dev/null || echo "=== Visual Foundations not loaded ===" !cat skills/shared/protocols/ux-protocol.md 2>/dev/null || true !cat skills/shared/protocols/input-validation.md 2>/dev/null || true !cat skills/shared/protocols/tool-efficiency.md 2>/dev/null || true !cat…

buiphucminhtam/forgewright · 65 tokens

git-workflow

Squad branching model: dev-first workflow with insiders preview channel.

dotnet/maui-labs · 16 tokens