prb-effect: Skill for Claude Code

.agents/skills/release-and-bump/SKILL.md

release-and-bump is a skill for Claude Code from PaulRBerg/prb-effect. It costs 64 tokens per session (1,003 once invoked), scanned A, original, MIT.

A release workflow for publishing a selected @prb/effect-* package to npm and updating the new-ui consumer monorepo, a repository containing several related projects.

In plain words
What is it for?
Use it to release @prb/effect-evm, @prb/effect-evm-safe, @prb/effect-next, @prb/effect-solana, or @prb/effect-xstate packages, then update new-ui for breaking changes or new features.
Why use it?
It coordinates package publishing, version bumping, and consumer updates so these steps are not missed or run from the wrong directory.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: names the AskUserQuestion tool; installed under .agents/ (shared by several agents).

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

Reuse

Borrowing it

Nothing to install: this file belongs to PaulRBerg/prb-effect. 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/PaulRBerg/prb-effect/main/.agents/skills/release-and-bump/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/PaulRBerg/prb-effect

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-and-bump

README.md
[![agentmods](https://agentmods.dev/badge/skills/paulrberg/prb-effect/release-and-bump/github.svg)](https://agentmods.dev/skills/paulrberg/prb-effect/release-and-bump)
Your own site
<a href="https://agentmods.dev/skills/paulrberg/prb-effect/release-and-bump"><img src="https://agentmods.dev/badge/skills/paulrberg/prb-effect/release-and-bump/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-and-bump

Your own site · 80×15
<a href="https://agentmods.dev/skills/paulrberg/prb-effect/release-and-bump"><img src="https://agentmods.dev/badge/skills/paulrberg/prb-effect/release-and-bump.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,003 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.00064 $0.01003
Opus 5 $0.00032 $0.00502
Sonnet 5 $0.00013 $0.00201
Haiku 4.5 $0.00006 $0.00100

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

Security

Grade A, and why

release-and-bump 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 9d 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.

.agents/skills/release-and-bump/SKILL.md · 117 lines

How it starts

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

Release and Bump

End-to-end pipeline: release a @prb/effect-* package to npm, bump it in the consumer monorepo (~/sablier/new-ui), migrate any breaking changes or new features.

Step 1: Identify Package

If $ARGUMENTS contains a package name, use it directly. Otherwise, infer from the current working directory by reading package.json — if it has a name starting with @prb/effect-, use that.

If neither provides a package name (e.g., cwd is the monorepo root and no argument was given), ask the user which package to release using AskUserQuestion with these options:

  • @prb/effect-evm
  • @prb/effect-evm-safe
  • @prb/effect-next
  • @prb/effect-solana
  • @prb/effect-xstate

Then cd into the package directory before continuing.

Step 2: Run release commands (publish from package directory)

Run the release bump + push flow first:

zsh -ic 'ccbump <package-name>'
git push origin

Then run npm publish from within the released package's directory:

cd <package-directory>
eval "$(direnv export zsh)"
npm publish

npm publish MUST run from the package directory (e.g., evm-safe/ for @prb/effect-evm-safe), not the monorepo root.

If any command exits with a non-zero code, stop and report the error. Do not proceed.

Step 3: Verify npm Publication

Read package.json to get the new version (ccbump modifies it in Step 2).

Verify the package is available on npm:

npm view <package-name>@<new-version> version

If the command fails (package not yet propagated), wait 10 seconds and retry once:

sleep 10 && npm view <package-name>@<new-version> version

If still failing after the retry, warn the user that npm propagation is slow but continue to the next step — the version was published successfully if Step 2 succeeded.

Step 4: Bump in ~/sablier/new-ui

Delegate to the node-deps-bumper skill to update the package version in the consumer monorepo:

  1. Change directory: cd ~/sablier/new-ui
  2. Invoke: /node-deps-bumper <package-name>

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

Subscribe to this mod's changes

release-and-bump is a skill published in the GitHub repository PaulRBerg/prb-effect (22 stars, last pushed 1mo ago), licensed MIT. It adds 64 tokens to every session and 1,003 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.