Borrowing it
Nothing to install: this file belongs to hitosea/happy-next. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/hitosea/happy-next/main/.claude/skills/happy-next-release/SKILL.mdgit clone --depth 1 https://github.com/hitosea/happy-nextWrote 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/hitosea/happy-next/happy-next-release)<a href="https://agentmods.dev/skills/hitosea/happy-next/happy-next-release"><img src="https://agentmods.dev/badge/skills/hitosea/happy-next/happy-next-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/hitosea/happy-next/happy-next-release"><img src="https://agentmods.dev/badge/skills/hitosea/happy-next/happy-next-release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, 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 MCP Rug Pull · line 226 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
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.00039 | $0.03392 |
| Opus 5 | $0.00019 | $0.01696 |
| Sonnet 5 | $0.00008 | $0.00678 |
| Haiku 4.5 | $0.00004 | $0.00339 |
Grade A, and why
happy-next-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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 457 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Happy Next 发布流程
总则
每次调用先让用户选择一条发布线,只展开对应 checklist:
- A. 仅 CLI
- B. GitHub Release(App + Desktop)
- C. Docker
- D. iOS App Store
- E. 全部
版本关系:
- CLI 使用
packages/happy-cli/package.json中的独立 npm 版本。 - B、C、D 使用同一个不可变的
vX.Y.Zgit tag 和同一个源代码 commit。 - B 包含 Android APK/AAB、iOS IPA、macOS Universal、Windows x64、Windows ARM64 和
latest.json。 - D 不重新构建 IPA,只提交 B 已发布的同一份 IPA。
- 推送 tag 本身不会发布 GitHub Release 或 Docker;必须显式触发相应 workflow。
- 不再提供“仅桌面追加到既有 Release”入口。
不要默认发布全部。任何会真实发布、提交 App Store、创建 tag、覆盖 Secret 或修改 Release 的操作,都必须先展示目标版本和完整命令并等待用户确认。
共用前置检查
git status --short --branch
git branch --show-current
git fetch origin --tags
git pull --ff-only origin main
要求:
- 工作区干净;
- 当前分支为
main; - 本地
main与远端同步; - 不得自行 stash、覆盖用户修改或强制推送。
如果不干净,提供“先提交指定改动 / 用户自行处理”选项,不要自作主张。
发布前更新
进入发布流程前:
- 查询
@openai/codex最新稳定版,更新packages/happy-cli/src/codex/package.ts及相关版本引用。 - 根据官方最新资料,更新
packages/happy-wire/src/modelCatalog.ts中 Codex、Claude Code、Gemini 的模型,以及对应的 reasoning effort、上下文窗口、Fast Mode 和定价等关联配置。 - 更新相关测试;修改
happy-wire后先运行yarn build,并运行受影响包规定的类型检查和测试。 - 展示改动和验证结果。有改动时先让用户确认提交并推送,重新通过共用前置检查后再继续发布;没有改动则直接继续。
发布入口选择
询问用户:
- A. 仅 CLI
- B. GitHub Release(App + Desktop)
- C. Docker
- D. iOS App Store
- E. 全部
选择后只执行对应分支。
A. 仅 CLI
A1. 审计 CLI 改动
LAST_CLI=$(git log --oneline --grep='^release: happy-next-cli' | head -1 | awk '{print $1}')
RANGE="${LAST_CLI:+${LAST_CLI}..HEAD}"
git log ${RANGE:--30} --oneline --no-merges -- packages/happy-cli packages/happy-wire
展示 CLI/wire 改动。如果没有需要发布的 CLI 改动,建议取消。
A2. 校验
cd packages/happy-cli
yarn build
修改过 happy-wire 时还必须:
cd packages/happy-wire
yarn build
A3. 决定 CLI 版本
node -e "
const v = require('./packages/happy-cli/package.json').version.split('.').map(Number);
console.log('当前: ' + v.join('.'));
console.log('patch: ' + v[0] + '.' + v[1] + '.' + (v[2] + 1));
console.log('minor: ' + v[0] + '.' + (v[1] + 1) + '.0');
console.log('major: ' + (v[0] + 1) + '.0.0');
"
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.
- 8d ago Changed · +9 lines ded30b3056e0
- 12d ago First seen · 448 lines · 39 tokens per session scan A 5e719b1207e6
happy-next-release is a skill published in the GitHub repository hitosea/happy-next (59 stars, last pushed today), licensed MIT. It adds 39 tokens to every session and 3,392 once invoked, about $0.0002 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.
Other skills, from other repositories
agent-release-swarm
Agent skill for release-swarm - invoke with $agent-release-swarm.
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.