changelog-release

changelog-release is a skill for Claude Code, Codex from phuonghx/aim-cli. It costs 84 tokens per session (1,393 once invoked), scanned A, original, MIT.

A release helper that maintains a human-readable CHANGELOG.md and creates versioned releases. It uses Semantic Versioning, where major, minor, and patch numbers describe the size of a release.

In plain words
What is it for?
Use it when turning Conventional Commits into a release, moving entries from Unreleased into a dated version, tagging that version, and drafting its notes.
Why use it?
It removes the manual work of sorting commit history, choosing a version number, updating the changelog, and preparing release notes.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/phuonghx/aim-cli/changelog-release
Any agent
npx skills add phuonghx/aim-cli --skill changelog-release
Clone the repo
git clone --depth 1 https://github.com/phuonghx/aim-cli

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/phuonghx/aim-cli/changelog-release.svg)](https://agentmods.dev/skills/phuonghx/aim-cli/changelog-release)
Your own site
<a href="https://agentmods.dev/skills/phuonghx/aim-cli/changelog-release"><img src="https://agentmods.dev/badge/skills/phuonghx/aim-cli/changelog-release.svg" alt="Measured on agentmods" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,393 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00084 $0.01393
Opus 5 $0.00042 $0.00696
Sonnet 5 $0.00017 $0.00279
Haiku 4.5 $0.00008 $0.00139

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

Security

Grade A, and why

changelog-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 3d 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.

aim/templates/aim-agents/skills/changelog-release/SKILL.md · 163 lines

How it starts

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

Changelog & Release

Keep a Changelog for humans, SemVer for tooling, Conventional Commits as the source.


Release Flow

Collect commits since last tag → Derive bump → Move Unreleased → release →
  Add date + version heading → Tag vX.Y.Z → Generate release notes → Push

Changelog Format (Keep a Changelog 1.1.0)

CHANGELOG.md lives at repo root, newest version on top, with a live [Unreleased] section you append to as you merge.

# Changelog
All notable changes to this project are documented here.
Format: Keep a Changelog. Versioning: Semantic Versioning.

## [Unreleased]

## [1.4.0] - 2026-06-23
### Added
- OAuth login via GitHub (#231)
### Fixed
- Crash when config file is empty (#240)

## [1.3.1] - 2026-05-02
### Security
- Patch path-traversal in file upload (CVE-2026-1234)

[Unreleased]: https://example.com/repo/compare/v1.4.0...HEAD
[1.4.0]: https://example.com/repo/compare/v1.3.1...v1.4.0
[1.3.1]: https://example.com/repo/compare/v1.3.0...v1.3.1

The Six Categories

Category Use for
Added New features
Changed Changes to existing behavior
Deprecated Soon-to-be-removed features (warn before Removed)
Removed Features taken out this release
Fixed Bug fixes
Security Vulnerability fixes — always call out

Write entries for humans: describe the user-visible effect, not the diff. Omit empty categories. Link issues/PRs.


Deriving the Version Bump

Read commit subjects since the last tag and map Conventional Commits → SemVer:

Commit signal Bump Example
BREAKING CHANGE: footer or feat!: / fix!: MAJOR X 1.4.0 → 2.0.0
feat: MINOR Y 1.4.0 → 1.5.0
fix: / perf: PATCH Z 1.4.0 → 1.4.1
docs: chore: refactor: test: ci: style: none (unless paired with above)

The highest signal wins: one feat! makes the whole release MAJOR.

Read the full file on GitHub · 163 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. 3d ago First seen · 163 lines · 84 tokens per session scan A d6a40b4217dc

Subscribe to this mod's changes

changelog-release is a skill published in the GitHub repository phuonghx/aim-cli (1 stars, last pushed 2mo ago), licensed MIT. It adds 84 tokens to every session and 1,393 once invoked, about $0.0004 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

mulch-record-from-evidence

Turn the evidence of a finished work session — git commits, changed files, recently-touched seeds issues — into well-formed ml record invocations. Use at session close, when an agent has made changes worth preserving as mulch expertise but hasn't yet recorded them.

jayminwest/mulch · 61 tokens

implement

End-to-end workflow for taking MCP work items from backlog to merged PR. Handles git branching, schema-driven planning, implementation, independent review, and PR creation. Composes spec-quality, review-quality, and schema-workflow skills into a single pipeline. Use when a user says "implement this", "work on this…

jpicklyk/task-orchestrator · 101 tokens

session-retrospective

Analyzes the current implementation run — evaluates schema effectiveness, delegation alignment, note quality, and plan-to-execution fit. Captures cross-session trends and proposes improvements when patterns repeat. Use after implementation runs, or when user says 'retrospective', 'session review', 'what did we learn'…

jpicklyk/task-orchestrator · 107 tokens

ralph

Launcher for the Ralph-style queue drain script — emits the right node ralph-loop.mjs invocation based on the user's filter and bounds. The actual loop runs as a Node script that spawns one claude -p --worktree per iteration; this skill is the configurator, not the loop. Use when a user says: drain the backlog, ralph…

jpicklyk/task-orchestrator · 99 tokens

prepare-release

End-to-end release automation — reads commits since last tag, infers semver bump, drafts changelog, creates release PR, merges it, waits for CI green, tags, and monitors the Docker build to completion. Use when the user says: prepare release, cut a release, bump version, create release PR, ship a new version, tag a…

jpicklyk/task-orchestrator · 95 tokens

quick-start

Interactive onboarding for the MCP Task Orchestrator. Detects empty or populated workspaces and walks through how plan mode, persistent tracking, and the MCP work together. Use when a user says "get started", "how do I use this", "quick start", "first time setup", "onboard me", "what can this MCP do", or "help me…

jpicklyk/task-orchestrator · 82 tokens