genblaze: Skill for Claude Code

.claude/skills/release-check/SKILL.md

release-check is a skill for Claude Code from backblaze-labs/genblaze. It costs 55 tokens per session (857 once invoked), scanned A, original, MIT.

A pre-release checklist for a GenBlaze package before creating a GitHub Release, which starts the package publishing workflow.

In plain words
What is it for?
Use it before releasing the core library, command-line tool, or a connector to verify its version and release requirements.
Why use it?
It checks that the package version, changelog, tests, linting, type checks, dependencies, and entry points are ready before publishing.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: positional $N argument.

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

Reuse

Borrowing it

Nothing to install: this file belongs to backblaze-labs/genblaze. 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/backblaze-labs/genblaze/main/.claude/skills/release-check/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/backblaze-labs/genblaze

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-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/backblaze-labs/genblaze/release-check.svg)](https://agentmods.dev/skills/backblaze-labs/genblaze/release-check)
Your own site
<a href="https://agentmods.dev/skills/backblaze-labs/genblaze/release-check"><img src="https://agentmods.dev/badge/skills/backblaze-labs/genblaze/release-check.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 857 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.1 $0.00055 $0.00857
Opus 5 $0.00028 $0.00428
Sonnet 5 $0.00011 $0.00171
Haiku 4.5 $0.00006 $0.00086

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

Security

Grade A, and why

release-check 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 6d 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/release-check/SKILL.md · 64 lines

How it starts

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

Release check — $ARGUMENTS

The release workflow is triggered by a published GitHub Release (see .github/workflows/release.yml). publish-core runs first, then publish-cli and publish-connectors in parallel. Every package needs its own version bump + CHANGELOG entry + passing tests before you tag.

Parse $ARGUMENTS as <package> <new-version> (e.g. core 0.3.2, openai 0.2.0).

Locate the package

Package Path
core libs/core
cli cli
any connector libs/connectors/<name>

Checklist

Run each step. Stop and report on the first failure.

  1. Version bump. Read <path>/pyproject.toml. If version != $2, edit it to $2.
  2. Core dependency pin (connectors only). Confirm genblaze-core>=<x> is at or above the currently published core version. If core is also being released in this wave, the connector pin should match.
  3. Entry point sanity (connectors only). Confirm the [project.entry-points."genblaze.providers"] line exists and the module/class is importable: python -c "import genblaze_<name>; <name>.<Class>()" || true (instantiation may require credentials — just check the import).
  4. Tests. cd <path> && pytest -v must pass.
  5. Lint. ruff check <path> and ruff format --check <path> must pass.
  6. Typecheck (core only; connectors optional). mypy <path>/genblaze_*/ --ignore-missing-imports.
  7. Build check. cd <path> && python -m build && twine check dist/* — validates wheel metadata before PyPI sees it.
  8. CHANGELOG. Confirm CHANGELOG.md has an entry for version $2 scoped to this package. If missing, draft one from git log --oneline $(git describe --tags --abbrev=0 2>/dev/null || echo HEAD~30)..HEAD -- <path>.
  9. Doc freshness. For connectors: confirm the matching section in README.md and any docs/features/provider-system.md entry is accurate for $2.

Report

A pass/fail table, then the exact next commands:

git add <path>/pyproject.toml CHANGELOG.md
git commit -m "release: <package> v<new-version>"
git push

Read the full file on GitHub · 64 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. 6d ago First seen · 64 lines · 55 tokens per session scan A 9d90cdc49b44

Subscribe to this mod's changes

release-check is a skill published in the GitHub repository backblaze-labs/genblaze (558 stars, last pushed yesterday), licensed MIT. It adds 55 tokens to every session and 857 once invoked, about $0.0003 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-30.