release

release is a command for Claude Code from alberduris/skills. It costs 0 tokens per session (975 once invoked), scanned A, original, MIT.

A release procedure for publishing skills in a marketplace, including required checks, version updates, builds, tests, commits, and a push to the main branch.

In plain words
What is it for?
Preparing and publishing skill releases, checking the required plugin structure, updating versions, running builds and tests, and pushing completed changes.
Why use it?
It turns a release into a tracked checklist and helps prevent missing required files, version changes, or verification steps.

Command for Claude Code

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 commands/alberduris/skills/release
Clone the repo
git clone --depth 1 https://github.com/alberduris/skills

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/commands/alberduris/skills/release.svg)](https://agentmods.dev/commands/alberduris/skills/release)
Your own site
<a href="https://agentmods.dev/commands/alberduris/skills/release"><img src="https://agentmods.dev/badge/commands/alberduris/skills/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 975 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.00000 $0.00975
Opus 5 $0.00000 $0.00487
Sonnet 5 $0.00000 $0.00195
Haiku 4.5 $0.00000 $0.00097

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

Security

Grade A, and why

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 4d 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.

.claude/commands/release.md · 114 lines

What it actually says

Release Procedure

Skills marketplace release. Version tracked per skill.


[!IMPORTANT]: BEFORE ANY RELEASE, CREATE A CHECKLIST WITH TodoWrite.

Do NOT release from memory. Create tasks for each step and mark them complete as you go.

Release Checklist (copy to TodoWrite):

1. All changes committed with conventional prefixes (see Commit Conventions)
2. Version bumped in ALL version files that exist for this skill (see Version Files)
3. If skill has a build system, build and test pass
4. git push origin main

[!SKILL-STRUCTURE]: For npx skills add discovery, every skill MUST have this directory layout: a) plugins/<skill>/.claude-plugin/plugin.json (name, version, description, author), b) plugins/<skill>/skills/<skill>/SKILL.md (frontmatter + directives). Commands, templates, scripts, and references live under plugins/<skill>/skills/<skill>/. Without both plugin.json and the nested skills/<skill>/ path, the installer will NOT find the skill.

[!VERSION-FILES]: Three version files are guaranteed across all skills. Additional version files may exist depending on the skill's internal structure (e.g. package.json, Cargo.toml, setup.py). All that exist MUST match.

version_files:
  # Always present:
  - file: SKILL.md
    path: plugins/<skill>/skills/<skill>/SKILL.md
    field: frontmatter → version
    read_by: Agent (skill loader)
  - file: plugin.json
    path: plugins/<skill>/.claude-plugin/plugin.json
    field: version
    read_by: Skill installer (npx skills add)
  - file: marketplace.json
    path: .claude-plugin/marketplace.json
    field: plugins[name=<skill>].version
    read_by: Marketplace registry
  # Skill-specific (check if they exist):
  # Any file that declares a version (package.json, Cargo.toml, pyproject.toml, etc.)
  # must be kept in sync with the above.

[!VERSION-SYNC-RULE]: If any version files diverge, align them all before releasing.


[!VERSION-BUMP]: Before each release, REASON about what bump is appropriate:

  • Run git log <last-tag>..HEAD --oneline to see all changes since last release
  • Apply the commit convention rules to determine the bump
  • Semver: patch (0.0.X), minor (0.X.0), major (X.0.0)

[!COMMIT-CONVENTIONS]: Use conventional prefixes scoped to the skill:

prefixes:
  - prefix: "fix(<skill>):"
    meaning: Bug fix
    bump: patch
  - prefix: "feat(<skill>):"
    meaning: New feature
    bump: minor
  - prefix: "breaking(<skill>):"
    meaning: Breaking change
    bump: major
  - prefix: "refactor(<skill>):"
    meaning: Code restructuring, no behavior change
    bump: patch
  - prefix: "docs(<skill>):"
    meaning: Documentation only
    bump: patch
  - prefix: "chore(<skill>):"
    meaning: Build, tooling, maintenance
    bump: patch

Commit message format: <prefix>(<skill>): <description>, bump to <version>

The highest-priority prefix in the log determines the bump:

  • Any breaking: in the log -> major
  • Any feat: -> minor
  • Only fix:/refactor:/docs:/chore: -> patch

[!RELEASE-PROCEDURE]: To release a new version of a skill:

  1. Make changes in plugins/<skill>/

  2. Bump version in all version files that exist for this skill (see Version Files)

  3. If the skill has a build system (package.json, Makefile, Cargo.toml, setup.py, etc.), run the build and tests.

  4. Stage files

    git add .claude-plugin/marketplace.json plugins/<skill>/...
    

    If the skill produces build artifacts that are gitignored, use git add -f to include them.

  5. Commit with conventional prefix

    git commit -m "<prefix>(<skill>): <description>, bump to X.Y.Z"
    
  6. Push

    git push origin main
    
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. 4d ago First seen · 114 lines · 0 tokens per session scan A aea66e68c359

Subscribe to this mod's changes

release is a command published in the GitHub repository alberduris/skills (18 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 975 tokens. 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.