one-person-capital: Skill for Claude Code

.agents/skills/release-changelog/SKILL.md

release-changelog is a skill for Claude Code, Codex from arthurzhuhan/one-person-capital. It costs 37 tokens per session (1,301 once invoked), scanned A, original, MIT.

A guide for writing a user-facing release changelog, which is a summary of what changed in a published software version.

In plain words
What is it for?
Use it to create or update a release file, identify changes since the last stable version, and describe fixes and features for users.
Why use it?
It gathers commits, change notes, and merged pull requests into one stable version document and prevents an existing changelog from being overwritten without review.

Skill for Claude CodeCodex

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

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

Reuse

Borrowing it

Nothing to install: this file belongs to arthurzhuhan/one-person-capital. 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/arthurzhuhan/one-person-capital/main/.agents/skills/release-changelog/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/arthurzhuhan/one-person-capital

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/arthurzhuhan/one-person-capital/release-changelog/github.svg)](https://agentmods.dev/skills/arthurzhuhan/one-person-capital/release-changelog)
Your own site
<a href="https://agentmods.dev/skills/arthurzhuhan/one-person-capital/release-changelog"><img src="https://agentmods.dev/badge/skills/arthurzhuhan/one-person-capital/release-changelog/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-changelog

Your own site · 80×15
<a href="https://agentmods.dev/skills/arthurzhuhan/one-person-capital/release-changelog"><img src="https://agentmods.dev/badge/skills/arthurzhuhan/one-person-capital/release-changelog.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,301 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.00037 $0.01301
Opus 5 $0.00018 $0.00651
Sonnet 5 $0.00007 $0.00260
Haiku 4.5 $0.00004 $0.00130

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

Security

Grade A, and why

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 13d 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/release-changelog/SKILL.md · 179 lines

How it starts

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

Release Changelog Skill

Generate the user-facing changelog for the stable OnePersonCapital release.

Output:

  • releases/v{version}.md

Important rule:

  • even if there are canary releases such as 1.2.3-canary.0, the changelog file stays releases/v1.2.3.md

Step 0 — Idempotency Check

Before generating anything, check whether the file already exists:

ls releases/v{version}.md 2>/dev/null

If it exists:

  1. read it first
  2. present it to the reviewer
  3. ask whether to keep it, regenerate it, or update specific sections
  4. never overwrite it silently

Step 1 — Determine the Stable Range

Find the last stable tag:

git tag --list 'v*' --sort=-version:refname | head -1
git log v{last}..HEAD --oneline --no-merges

The planned stable version comes from one of:

  • an explicit maintainer request
  • the chosen bump type applied to the last stable tag
  • the release plan already agreed in doc/RELEASING.md

Do not derive the changelog version from a canary tag or prerelease suffix.

Step 2 — Gather the Raw Inputs

Collect release data from:

  1. git commits since the last stable tag
  2. .changeset/*.md files
  3. merged PRs via gh when available

Useful commands:

git log v{last}..HEAD --oneline --no-merges
git log v{last}..HEAD --format="%H %s" --no-merges
ls .changeset/*.md | grep -v README.md
gh pr list --state merged --search "merged:>={last-tag-date}" --json number,title,body,labels

Step 3 — Detect Breaking Changes

Look for:

  • destructive migrations
  • removed or changed API fields/endpoints
  • renamed or removed config keys
  • major changesets
  • BREAKING: or BREAKING CHANGE: commit signals

Key commands:

git diff --name-only v{last}..HEAD -- packages/db/src/migrations/
git diff v{last}..HEAD -- packages/db/src/schema/
git diff v{last}..HEAD -- server/src/routes/ server/src/api/
git log v{last}..HEAD --format="%s" | rg -n 'BREAKING CHANGE|BREAKING:|^[a-z]+!:' || true

If the requested bump is lower than the minimum required bump, flag that before the release proceeds.

Read the full file on GitHub · 179 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. 13d ago First seen · 179 lines · 37 tokens per session scan A c2067728f43b

Subscribe to this mod's changes

release-changelog is a skill published in the GitHub repository arthurzhuhan/one-person-capital (24 stars, last pushed 6mo ago), licensed MIT. It adds 37 tokens to every session and 1,301 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.