gem-release

gem-release is a skill for Claude Code from clacky-ai/openclacky. It costs 76 tokens per session (2,072 once invoked), scanned C, original, MIT.

An automated release workflow for the openclacky Ruby gem, a reusable package distributed through RubyGems.

In plain words
What is it for?
Use it to make stable or pre-release versions, run checks, publish the gem to RubyGems, create a GitHub Release, and update the related CDN files.
Why use it?
It coordinates version changes, tests, package building, publishing, releases, and CDN updates so the release process does not have to be performed manually.

Skill for Claude Code

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

Good fit Use it to make stable or pre-release versions, run checks, publish the gem to RubyGems, create a GitHub Release, and update the related CDN files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/clacky-ai/openclacky/gem-release
About the project

OpenClacky is an open-source AI coding agent that uses OpenAI-compatible models to perform tasks through tools and subagents. It is intended for developers who want an agent with flexible model choice and lower token usage. The catalogue skills and agents extend its workflows and capabilities.

clacky-ai/openclacky · 1,187 stars · on GitHub · openclacky.com

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 clacky-ai/openclacky --skill gem-release
Clone the repo
git clone --depth 1 https://github.com/clacky-ai/openclacky

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/clacky-ai/openclacky/gem-release/github.svg)](https://agentmods.dev/skills/clacky-ai/openclacky/gem-release)
Your own site
<a href="https://agentmods.dev/skills/clacky-ai/openclacky/gem-release"><img src="https://agentmods.dev/badge/skills/clacky-ai/openclacky/gem-release/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 gem-release

Your own site · 80×15
<a href="https://agentmods.dev/skills/clacky-ai/openclacky/gem-release"><img src="https://agentmods.dev/badge/skills/clacky-ai/openclacky/gem-release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,072 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. 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: 2 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 Tool Misuse · line 173
    Tool calls are chained to bypass individual safety checks or escalate capabilities beyond what any single tool call would allow.
    Fix: Limit tool chaining depth and validate the output of each tool before passing it to the next. Require explicit user approval for multi-step chains.
  • low Supply Chain · line 173
    Remote code is downloaded and executed. This bypasses code review and could introduce malicious code.
    Fix: Avoid downloading and executing remote scripts. Use trusted packages from PyPI/npm. If remote fetch is required, verify checksums and use HTTPS.
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.00076 $0.02072
Opus 5 $0.00038 $0.01036
Sonnet 5 $0.00015 $0.00414
Haiku 4.5 $0.00008 $0.00207

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

Security

Grade C, and why

gem-release scanned grade C with 2 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/release.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

Fresh install: curl -sSL https://raw.githubusercontent.com/clacky-ai/openclacky/main/scripts/install.sh | bash

Makes network callslowCapability

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

Fresh install: curl -sSL https://raw.githubusercontent.com/clacky-ai/openclacky/main/scripts/install.sh | bash
.clacky/skills/gem-release/SKILL.md · 221 lines

How it starts

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

Gem Release Skill

Automates the complete openclacky gem release workflow via SKILL_DIR/scripts/release.sh.

Usage

  • "Release a new version"
  • "Publish a new gem version"
  • "Release version 1.0.0.beta.1" (pre-release with explicit version)
  • /gem-release

Workflow

The release script (SKILL_DIR/scripts/release.sh) handles everything end-to-end:

  1. Pre-release checks (clean working directory, required tools)
  2. Run test suite (bundle exec rspec) + web search smoke tests (real network — verifies Bing/DDG parsers still work against live HTML)
  3. Bump version in lib/clacky/version.rb
  4. Update Gemfile.lock via bundle install
  5. Commit and push to origin, wait for CI
  6. Build gem (gem build openclacky.gemspec)
  7. Publish to RubyGems (gem push)
  8. Create git tag and push
  9. Create GitHub Release with .gem asset (uses CHANGELOG.md for notes)
  10. Upload .gem to Tencent Cloud OSS CDN
  11. Update latest.txt on OSS (stable only, unless --update-latest)
  12. Rebuild and sync scripts/ to OSS
  13. Cleanup build artifacts

Agent Instructions

1. Determine version and release type

Read current version:

grep 'VERSION =' lib/clacky/version.rb

Stable release (default): Increment patch version (e.g., 1.0.51.0.6). Confirm with user if unsure which part to bump (major/minor/patch).

Pre-release: Use the exact version the user specified (e.g., 2.0.0.beta.1). Before proceeding, warn about pre-release caveats (see section below).

2. Write CHANGELOG

This is the one step the agent handles manually — the script does not write changelog entries because it requires reviewing git history and exercising judgment.

  1. Find the previous version tag:

    git describe --tags --abbrev=0
    
  2. Gather commits since last release:

    git log <previous_tag>..HEAD --oneline
    
  3. Write a new section in CHANGELOG.md following this format:

    ## [X.Y.Z] - YYYY-MM-DD
    
    ### Added
    - Feature description
    
    ### Improved
    - Enhancement description
    
    ### Fixed
    - Bug fix description
    
    ### More
    - Minor items
    

Read the full file on GitHub · 221 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 221 lines · 76 tokens per session scan C 2c87f805a0c4

Subscribe to this mod's changes

gem-release is a skill published in the GitHub repository clacky-ai/openclacky (1,187 stars, last pushed today), licensed MIT. It adds 76 tokens to every session and 2,072 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.