release

release is a skill for Claude Code from u9401066/template-is-all-you-need. It costs 60 tokens per session (1,728 once invoked), scanned A, original, Apache-2.0.

A release-preparation workflow for software projects. It covers checks before publishing, version-number updates, changelog and documentation updates, and deployment checks.

In plain words
What is it for?
Use it when preparing a version release, deciding whether a change is major, minor, or a patch, updating release files, and checking deployment readiness.
Why use it?
It reduces the chance of publishing with failing tests, unresolved issues, missing security checks, or documentation that no longer matches the code.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions Codex.

Good fit Use it when preparing a version release, deciding whether a change is major, minor, or a patch, updating release files, and checking deployment readiness.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/u9401066/template-is-all-you-need/release
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add u9401066/template-is-all-you-need --skill release
Clone the repo
git clone --depth 1 https://github.com/u9401066/template-is-all-you-need

Made for: Claude Code.

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/u9401066/template-is-all-you-need/release/github.svg)](https://agentmods.dev/skills/u9401066/template-is-all-you-need/release)
Your own site
<a href="https://agentmods.dev/skills/u9401066/template-is-all-you-need/release"><img src="https://agentmods.dev/badge/skills/u9401066/template-is-all-you-need/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/u9401066/template-is-all-you-need/release"><img src="https://agentmods.dev/badge/skills/u9401066/template-is-all-you-need/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,728 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.
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.00060 $0.01728
Opus 5 $0.00030 $0.00864
Sonnet 5 $0.00012 $0.00346
Haiku 4.5 $0.00006 $0.00173

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

Security

Grade A, and why

release 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 10d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • release — 100% identical, 0 lines differ
.claude/skills/release/SKILL.md · 219 lines

How it starts

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

版本發布工作流

描述

完整的版本發布準備流程,包含版本號更新、CHANGELOG 生成、文檔同步和部署檢查。

觸發條件

  • 「準備發布」「release」「發布版本」
  • 「REL: v1.2.0」

📦 發布流程

┌─────────────────────────────────────────────────────────────┐
│                   Release Workflow                           │
├─────────────────────────────────────────────────────────────┤
│  Phase 1: 🔍 發布檢查 (Pre-release Check)                    │
│  ├─ 確認所有測試通過                                         │
│  ├─ 執行安全掃描                                             │
│  ├─ 檢查待處理問題                                           │
│  └─ 確認 main/master 分支狀態                               │
├─────────────────────────────────────────────────────────────┤
│  Phase 2: 🔢 版本決定 (Version Decision)                     │
│  ├─ 分析變更類型 (MAJOR/MINOR/PATCH)                        │
│  ├─ 確認版本號                                               │
│  └─ 更新版本檔案                                             │
├─────────────────────────────────────────────────────────────┤
│  Phase 3: 📝 文檔更新 (Documentation)                        │
│  ├─ [changelog-updater] 更新 CHANGELOG                      │
│  ├─ [readme-updater] 更新 README                            │
│  ├─ [roadmap-updater] 標記完成項目                          │
│  └─ 更新 API 文檔(如有)                                    │
├─────────────────────────────────────────────────────────────┤
│  Phase 4: 🏷️ 標籤準備 (Tagging)                             │
│  ├─ 建立 Git tag                                            │
│  ├─ 準備 release notes                                      │
│  └─ 確認變更摘要                                             │
├─────────────────────────────────────────────────────────────┤
│  Phase 5: 🚀 發布 (Publish)                                  │
│  ├─ 推送 tag                                                │
│  ├─ 建立 GitHub Release                                     │
│  └─ 觸發 CI/CD pipeline                                     │
├─────────────────────────────────────────────────────────────┤
│  Phase 6: 📢 發布後 (Post-release)                           │
│  ├─ 更新 Memory Bank                                        │
│  ├─ 通知相關人員                                             │
│  └─ 準備下一版本                                             │
└─────────────────────────────────────────────────────────────┘

Read the full file on GitHub · 219 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. 10d ago First seen · 219 lines · 0 tokens per session scan A aa9ed41b4f22

Subscribe to this mod's changes

release is a skill published in the GitHub repository u9401066/template-is-all-you-need (3 stars, last pushed 6mo ago), licensed Apache-2.0. It adds 60 tokens to every session and 1,728 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-31.

Related

Other skills, from other repositories

ecosystem-managing

A codebase maintenance guide covering releases, cleanup, and project handoffs. A release means publishing a new software version; a handoff is documentation that helps another developer take over the project.

VidyFoo/antigravity-skill-engine · 27 tokens

release-skills

A release workflow for preparing and publishing a new version of a software project. A release is a named version that may include updated version files, release notes, tags, or a GitHub Release.

JimLiu/baoyu-skills · 87 tokens

version-release

Choose and apply the correct semantic version bump for this repository. Use for every user-visible release, before merge when a change set should ship as patch, minor, or major, and whenever package/plugin/desktop version metadata must stay synchronized.

hoangsonww/Claude-Code-Agent-Monitor · 50 tokens

flow-next-land

Autonomous PR babysitter tick. Fixes CI, resolves feedback, merges when converged, closes the spec, releases. Emits LANDVERDICT. Use when asked to land PRs.

gmickel/flow-next · 42 tokens

changelog-gen

A changelog generator that turns Git history into a version-by-version record of project changes. A changelog is a readable summary of new features, fixes, breaking changes, documentation, and other updates.

laolaoshiren/claude-code-skills-zh · 19 tokens

release

Release a new version of the DevoxxGenie IntelliJ plugin — prompt for the target version, bump it in the build files, write a curated CHANGELOG.md entry and plugin.xml change-notes from the git/PR history since the last tag, build to verify, then commit, tag, and publish a matching GitHub release. Use this whenever…

devoxx/DevoxxGenieIDEAPlugin · 121 tokens