airig: Skill for Claude Code

.ai/skills/automate-commit-based-gh-release-changelog/SKILL.md

automate-commit-based-gh-release-changelog is a skill for Claude Code from jd-solanki/airig. It costs 80 tokens per session (448 once invoked), scanned A, original, MIT.

A setup for creating GitHub releases and changelogs from Conventional Commits, a commit-message format that labels changes such as features and bug fixes. It uses changelogithub in GitHub Actions, GitHub’s built-in automation service.

In plain words
What is it for?
Use it when publishing tagged versions, generating release notes, and automating GitHub release creation after a package is published.
Why use it?
It removes the manual work of collecting changes between version tags and formatting release notes. The setup also highlights breaking changes and requires the correct repository permissions and full tag history.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

This is jd-solanki/airig's own configuration. It tells Claude Code how to work on airig 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 airig configures →

Reuse

Borrowing it

Nothing to install: this file belongs to jd-solanki/airig. 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/jd-solanki/airig/main/.ai/skills/automate-commit-based-gh-release-changelog/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/jd-solanki/airig

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 automate-commit-based-gh-release-changelog

README.md
[![agentmods](https://agentmods.dev/badge/skills/jd-solanki/airig/automate-commit-based-gh-release-changelog/github.svg)](https://agentmods.dev/skills/jd-solanki/airig/automate-commit-based-gh-release-changelog)
Your own site
<a href="https://agentmods.dev/skills/jd-solanki/airig/automate-commit-based-gh-release-changelog"><img src="https://agentmods.dev/badge/skills/jd-solanki/airig/automate-commit-based-gh-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 automate-commit-based-gh-release-changelog

Your own site · 80×15
<a href="https://agentmods.dev/skills/jd-solanki/airig/automate-commit-based-gh-release-changelog"><img src="https://agentmods.dev/badge/skills/jd-solanki/airig/automate-commit-based-gh-release-changelog.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 448 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.00080 $0.00448
Opus 5 $0.00040 $0.00224
Sonnet 5 $0.00016 $0.00090
Haiku 4.5 $0.00008 $0.00045

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

Security

Grade A, and why

automate-commit-based-gh-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 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.

.ai/skills/automate-commit-based-gh-release-changelog/SKILL.md · 62 lines

What it actually says

Automate Commit-Based GitHub Release Changelog

Uses changelogithub to read Conventional Commits between tags and create (or update) a GitHub release with a formatted changelog.

Workflow setup

Trigger and permissions

on:
  push:
    tags:
      - 'v*'

permissions:
  contents: write   # required — default contents:read cannot create releases

Changelog step

Run changelogithub as the last step — after npm publish (if any) — so a failed publish doesn't create a dangling GitHub release:

- uses: actions/checkout@v6
  with:
    fetch-depth: 0  # full tag history required; shallow clone produces empty changelog

- name: Generate changelog
  run: npx changelogithub
  env:
    GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

Conventional Commits

changelogithub groups entries by type and surfaces breaking changes at the top:

Commit prefix Changelog section
feat: Features
fix: Bug Fixes
chore: Chores
feat!: / chore!: Breaking Changes (top)

Commits that don't follow the convention are omitted from the changelog.

Preview before pushing a tag

npx changelogithub --dry

Reference

  • For a complete end-to-end workflow combining npm publish + changelog generation, see automate-npm-release/EXAMPLE_WORKFLOW.yml if that skill is installed locally.
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 · 62 lines · 80 tokens per session scan A cad867a8710b

Subscribe to this mod's changes

automate-commit-based-gh-release-changelog is a skill published in the GitHub repository jd-solanki/airig (2 stars, last pushed 2mo ago), licensed MIT. It adds 80 tokens to every session and 448 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.