beads-starter: Skill for Claude Code

.claude/skills/versionup/SKILL.md

versionup is a skill for Claude Code from seungyeop-lee/beads-starter. It costs 28 tokens per session (592 once invoked), scanned A, original, MIT.

A release helper for changing the version number of the beads-starter on-demand plugin. It supports major, minor, and patch changes and keeps two plugin manifest files synchronized.

In plain words
What is it for?
Use it when releasing a new major, minor, or patch version of the plugin.
Why use it?
It prevents the two version declarations from becoming different and enforces the project’s required versioning and commit rules.

Skill for Claude Code

Written for Claude Code: Claude Code plugin machinery. Also seen: mentions Codex.

This is seungyeop-lee/beads-starter's own configuration. It tells Claude Code how to work on beads-starter 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 beads-starter configures →

Reuse

Borrowing it

Nothing to install: this file belongs to seungyeop-lee/beads-starter. 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/seungyeop-lee/beads-starter/main/.claude/skills/versionup/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/seungyeop-lee/beads-starter

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 versionup

README.md
[![agentmods](https://agentmods.dev/badge/skills/seungyeop-lee/beads-starter/versionup/github.svg)](https://agentmods.dev/skills/seungyeop-lee/beads-starter/versionup)
Your own site
<a href="https://agentmods.dev/skills/seungyeop-lee/beads-starter/versionup"><img src="https://agentmods.dev/badge/skills/seungyeop-lee/beads-starter/versionup/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 versionup

Your own site · 80×15
<a href="https://agentmods.dev/skills/seungyeop-lee/beads-starter/versionup"><img src="https://agentmods.dev/badge/skills/seungyeop-lee/beads-starter/versionup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 592 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.00028 $0.00592
Opus 5 $0.00014 $0.00296
Sonnet 5 $0.00006 $0.00118
Haiku 4.5 $0.00003 $0.00059

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

Security

Grade A, and why

versionup 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.

.claude/skills/versionup/SKILL.md · 65 lines

How it starts

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

on-demand Plugin Version Bump

Overview

Bumps the on-demand plugin version in both manifest files and commits with the exact required message format.

Target Files

Both files must be updated together — never one without the other:

File Field
on-demand/.claude-plugin/plugin.json "version"
on-demand/.codex-plugin/plugin.json "version"

Semver Rules

Current version: read from on-demand/.claude-plugin/plugin.json (source of truth). The two files must always hold the same version — if they differ, stop and report the mismatch instead of bumping.

Parameter Change
major X+1.0.0
minor X.Y+1.0
patch X.Y.Z+1

When major bumps: reset minor and patch to 0. When minor bumps: reset patch to 0. When patch bumps: keep major and minor unchanged.

Steps

  1. Read current version from on-demand/.claude-plugin/plugin.json
  2. Verify on-demand/.codex-plugin/plugin.json has the same version
  3. Calculate new version per the semver rules above
  4. Update "version" field in on-demand/.claude-plugin/plugin.json
  5. Update "version" field in on-demand/.codex-plugin/plugin.json
  6. Stage both files:
    git add on-demand/.claude-plugin/plugin.json on-demand/.codex-plugin/plugin.json
    
  7. Commit with exact message format — no other format is acceptable:
    git commit -m "release: on-demand 플러그인 버전 [new-version]"
    
    Example: git commit -m "release: on-demand 플러그인 버전 0.4.0"

Out of Scope

  • Do not push to main — pushing is the deploy step and stays a manual decision.
  • Do not touch always-on/ or the root shim; they are not versioned.

Common Mistakes

Mistake Correct
"chore: bump version to 0.4.0" "release: on-demand 플러그인 버전 0.4.0"
"release: v0.4.0" "release: on-demand 플러그인 버전 0.4.0"
Updating only one file Both files required
Staging with git add . Stage only the two manifest files

Read the full file on GitHub · 65 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. 10d ago First seen · 65 lines · 28 tokens per session scan A e46f04bbe85c

Subscribe to this mod's changes

versionup is a skill published in the GitHub repository seungyeop-lee/beads-starter (1 stars, last pushed 3mo ago), licensed MIT. It adds 28 tokens to every session and 592 once invoked, about $0.0001 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.