Borrowing it
Nothing to install: this file belongs to archcore-ai/cli. 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/archcore-ai/cli/main/.claude/skills/generate-release-changelog/SKILL.mdgit clone --depth 1 https://github.com/archcore-ai/cliWrote 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/archcore-ai/cli/generate-release-changelog)<a href="https://agentmods.dev/skills/archcore-ai/cli/generate-release-changelog"><img src="https://agentmods.dev/badge/skills/archcore-ai/cli/generate-release-changelog.svg" alt="Measured on agentmods" height="20"></a>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.00058 | $0.01330 |
| Opus 5 | $0.00029 | $0.00665 |
| Sonnet 5 | $0.00012 | $0.00266 |
| Haiku 4.5 | $0.00006 | $0.00133 |
Grade A, and why
generate-release-changelog 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.
How it starts
The opening of the file, as written. The whole thing — 121 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Generate Release Changelog
Produce a tight, human-readable changelog for the latest published Git tag and print it as the final assistant message. This skill is read-only — do not write, edit, or create any files, directories, or git/GitHub objects at any point.
The product owner reads this to understand what changed for users, not what was implemented. Optimize for impact density: every bullet must answer "what is different now from a user's seat?". Cut anything that does not.
Hard constraints (non-negotiable)
- No file writes: do not use Write, Edit, Bash mkdir/touch, or any equivalent.
- No remote writes: do not run git commit, git tag, git push, or gh release create/edit.
- Output is a single chat message in Markdown. No preamble ("Here's your changelog:"), no follow-up questions, no commentary after the changelog ends.
- If the commit range is empty, print a single line:
No commits found between <previous> and <latest>.and stop.
Step 1 — Resolve the tag range
Run in parallel:
git tag --sort=-creatordate | head -5
git describe --tags --abbrev=0
latest= output ofgit describe --tags --abbrev=0.previous= the next tag in the sorted list. If no previous tag exists, usegit rev-list --max-parents=0 HEAD | head -1and note "initial release" in the changelog.- If the user provides a tag argument, treat that as
latest; derivepreviousfrom the sorted list.
Step 2 — Collect commits
git log <previous>..<latest> --no-merges --pretty=format:'%H%x09%s%x09%an'
For each commit, capture changed files:
git show --stat --pretty=format:'' <sha> | head -40
For commits with ambiguous subjects (e.g., chore: misc, wip, update), inspect the diff only for paths that look load-bearing — skip obvious docs: / chore: commits:
git show <sha> -- <relevant-paths>
Step 3 — Classify commits
Map every commit to exactly one bucket. Conventional Commit prefixes are a hint; the diff is authoritative — a chore: commit that ships user-visible behavior belongs in Features.
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.
- 6d ago First seen · 121 lines · 58 tokens per session scan A 73658f8e6c89
generate-release-changelog is a skill published in the GitHub repository archcore-ai/cli (64 stars, last pushed yesterday), licensed Apache-2.0. It adds 58 tokens to every session and 1,330 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.
Other skills, from other repositories
release
Guide through the Cortex TMS release process — version bump, changelog, sync, tag, publish. Every step requires user approval.
ship
Use when work is verified and ready to leave the machine — branch/PR/merge/deploy/smoke-check. Triggers on "ship it", "deploy", "merge the PR", "push this", "release", "go live", "cutover". Covers git hygiene, PR and merge discipline, deploy-target detection (Cloudflare Workers/Pages via wrangler, Vercel, Convex…
github-release-briefing-skill
Create a source-linked briefing for the latest published GitHub release of a public repository. Use for engineering teams tracking a dependency release; do not use it to publish releases or change repositories.
taiyi-integration
TaiyiForge 第9阶段 — 闭环归档,CHANGELOG.md。四端通用。.
changelog-gen
Changelog 生成器 - 从 Git 历史自动生成 CHANGELOG.
truecourse-hooks
Install, configure, or remove the TrueCourse pre-commit hook.