israel-statistics-mcp: Skill for Claude Code

.claude/skills/release/SKILL.md

release is a skill for Claude Code from reuvenaor/israel-statistics-mcp. It costs 34 tokens per session (829 once invoked), scanned A, original, MIT.

A release checklist for preparing a package, verifying it, testing the exact archive users install, and completing a manual publish process.

In plain words
What is it for?
Use it to check changesets, run project verification, inspect and install the package archive, perform local Docker and smoke tests, and follow the final publishing checklist.
Why use it?
It catches missing change notes, build errors, packaging mistakes, broken command-line tools, and failed installation before release.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is reuvenaor/israel-statistics-mcp's own configuration. It tells Claude Code how to work on israel-statistics-mcp 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 israel-statistics-mcp configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is Bash(pnpm:*), Bash(npm:*), Bash(node scripts/smoke.mjs:*), Bash(npx publint:*), Bash(docker build:*), Bash(docker run:*), Bash(tar:*), Bash(git:*), Bash(mkdir:*.

Reuse

Borrowing it

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

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/reuvenaor/israel-statistics-mcp/release/github.svg)](https://agentmods.dev/skills/reuvenaor/israel-statistics-mcp/release)
Your own site
<a href="https://agentmods.dev/skills/reuvenaor/israel-statistics-mcp/release"><img src="https://agentmods.dev/badge/skills/reuvenaor/israel-statistics-mcp/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 release

Your own site · 80×15
<a href="https://agentmods.dev/skills/reuvenaor/israel-statistics-mcp/release"><img src="https://agentmods.dev/badge/skills/reuvenaor/israel-statistics-mcp/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 829 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.00034 $0.00829
Opus 5 $0.00017 $0.00415
Sonnet 5 $0.00007 $0.00166
Haiku 4.5 $0.00003 $0.00083

Measured 11d ago against content hash 58e73d5c03f5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 11d 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/SKILL.md · 40 lines

How it starts

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

Release preparation & publish checklist

Zero configured CI secrets — CI never publishes. It only maintains the changesets "Version Packages" PR. Everything below the gates is done locally with web-authenticated accounts.

Gates (run all before any publish)

  1. Changesets: pnpm changeset status — every user-visible change since the last release has one (patch=fix, minor=feature, major=breaking).
  2. Verify: run the verify skill (typecheck, lint, format:check, unit tests, build, offline smoke) and node scripts/smoke.mjs --live if network allows.
  3. Tarball gate (mandatory):
    • pnpm build && pnpm pack
    • tar -tzf *.tgz: ONLY package/dist/*, package/README.md, package/LICENSE, package/package.json
    • tar -xzOf *.tgz package/dist/index.js | head -1#!/usr/bin/env node
    • npx publint → zero errors
    • Install-and-run test (what npx does on a user machine): in a temp dir, npm init -y && npm install <abs path to .tgz>; check both bins exist in node_modules/.bin/; then node scripts/smoke.mjs --command "<tmpdir>/node_modules/.bin/israel-statistics-mcp" (offline; add --live for full assurance)
    • delete the local .tgz afterwards
  4. Local Docker gate: docker build -t israel-statistics-mcp:dev . then node scripts/smoke.mjs --command "docker run --init --rm -i israel-statistics-mcp:dev". Confirm npm/npx/corepack/yarn are absent from the runtime image. Never push the :dev tag.
  5. Sync check: README tool table (9) and server.json match src/mcp/tools.ts; server.json version equals the version being released (hand-maintained!).

Publish (manual, in this order)

  1. Merge the "Version Packages" PR on GitHub; git checkout main && git pull.
  2. npm: npm login (browser) if needed → pnpm release (build + changeset publish + git tag) → git push --follow-tags.
  3. Docker (Docker Desktop signed in): docker buildx build --platform linux/amd64,linux/arm64 -t reuvenaor/israel-statistics-mcp:<version> -t reuvenaor/israel-statistics-mcp:latest --push .
  4. MCP Registry (requires npm package + Docker image to already exist): mcp-publisher login github (device flow) → mcp-publisher publish.
  5. Docker Hub dashboard: paste the README as the repository description.
  6. Post-publish sanity: from a NEUTRAL directory (not this repo), npx -y @reuvenorg/israel-statistics-mcp should start and log "[MCP] Server ready on stdio"; docker run --init --rm -i reuvenaor/israel-statistics-mcp:latest likewise.

Read the full file on GitHub · 40 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. 11d ago First seen · 40 lines · 34 tokens per session scan A 58e73d5c03f5

Subscribe to this mod's changes

release is a skill published in the GitHub repository reuvenaor/israel-statistics-mcp (4 stars, last pushed 1mo ago), licensed MIT. It adds 34 tokens to every session and 829 once invoked, about $0.0002 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.