release

release is a skill for Claude Code from fabis94/universal-ai-config. It costs 15 tokens per session (1,176 once invoked), scanned A, original, MIT.

A release workflow for creating a versioned software release, including a changelog, a Git tag, and a GitHub release. A Git tag marks a specific state of the code, while a changelog records what changed.

In plain words
What is it for?
Use it to publish a semantic-version release, including draft or prerelease versions, after checking the repository and GitHub access.
Why use it?
It groups the checks and release steps needed to publish a new version, helping catch an unclean or unauthenticated repository before release work begins.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: names the AskUserQuestion tool.

Good fit Use it to publish a semantic-version release, including draft or prerelease versions, after checking the repository and GitHub access.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fabis94/universal-ai-config/release
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.

Any agent
npx skills add fabis94/universal-ai-config --skill release
Clone the repo
git clone --depth 1 https://github.com/fabis94/universal-ai-config

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 release

README.md
[![agentmods](https://agentmods.dev/badge/skills/fabis94/universal-ai-config/release.svg)](https://agentmods.dev/skills/fabis94/universal-ai-config/release)
Your own site
<a href="https://agentmods.dev/skills/fabis94/universal-ai-config/release"><img src="https://agentmods.dev/badge/skills/fabis94/universal-ai-config/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,176 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to high

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 →

  • high Privilege Escalation · line 42
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • medium Data Exfiltration · line 151
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 151
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
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.00015 $0.01176
Opus 5 $0.00008 $0.00588
Sonnet 5 $0.00003 $0.00235
Haiku 4.5 $0.00002 $0.00118

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

Security

Grade A, and why

release scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Otherwise, use curl:
.universal-ai-config/skills/release/SKILL.md · 165 lines

How it starts

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

Release

Create a new versioned release. This includes generating a changelog, creating a git tag, and publishing a GitHub release.

Parse $ARGUMENTS for:

  • <version> — semver version (e.g. 1.2.0, 2.0.0-beta.1)
  • --draft — create the GitHub release as a draft
  • --prerelease — mark the GitHub release as a prerelease

Step 1: Validate Prerequisites

Run ALL checks upfront before doing any release work. If any check fails, stop immediately and print the remediation instructions.

1a. Git state

  • Run git status — working directory must be clean (no uncommitted changes)
  • Verify the current branch is the main/default branch (git symbolic-ref refs/remotes/origin/HEAD or check for main/master)
  • Run git pull to ensure the branch is up to date

1b. GitHub authentication

Check in order:

  1. which gh && gh auth status — gh CLI installed and authenticated
  2. If gh is unavailable or not authed, check: [ -n "$GITHUB_TOKEN" ] || [ -n "$GH_TOKEN" ]

If neither is available, stop and tell the user:

GitHub authentication is required for creating releases. Set up one of:

  1. Run gh auth login for interactive GitHub CLI login
  2. Set export GITHUB_TOKEN=<token> with a personal access token that has repo scope

Create a token at: https://github.com/settings/tokens/new?scopes=repo

1c. Git remote

  • Run git remote get-url origin — must have a remote configured

Step 2: Determine Version

If a version was provided in $ARGUMENTS, validate it's valid semver.

If no version was provided:

  1. Read the current version from package.json (if it exists) or the latest git tag (git describe --tags --abbrev=0)
  2. Present the user with options for the next version (patch, minor, major) using AskUserQuestion
  3. Use the selected version

Ensure the version doesn't already exist as a tag (git tag -l "v<version>").

Step 3: Generate Changelog

Generate a changelog from commits since the last tag:

git log <last-tag>..HEAD --pretty=format:"%s (%h)" --no-merges

Read the full file on GitHub · 165 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. 8d ago First seen · 165 lines · 15 tokens per session scan A 9be387b467ce

Subscribe to this mod's changes

release is a skill published in the GitHub repository fabis94/universal-ai-config (11 stars, last pushed 11d ago), licensed MIT. It adds 15 tokens to every session and 1,176 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.