release-safety

release-safety is a skill for Claude Code from tamagui/tamagui. It costs 0 tokens per session (264 once invoked), scanned A, original, MIT.

A set of rules for safely releasing packages from a software monorepo, a repository containing multiple related packages. It controls which checks, tests, and build steps may be skipped.

In plain words
What is it for?
Use it when publishing packages, creating releases or canaries, and deciding how to respond when release checks, tests, or builds fail.
Why use it?
It helps catch release problems before publishing and prevents bypassing important verification without permission.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it when publishing packages, creating releases or canaries, and deciding how to respond when release checks, tests, or builds fail.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tamagui/tamagui/release-safety
About the project

Tamagui is a set of React and React Native libraries for sharing UI code across web and native applications, including styling tools, an optimizing compiler, and an optional component kit. It is for developers building cross-platform interfaces with TypeScript and React.

tamagui/tamagui · 14,184 stars · on GitHub · tamagui.dev

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 tamagui/tamagui --skill release-safety
Clone the repo
git clone --depth 1 https://github.com/tamagui/tamagui

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/tamagui/tamagui/release-safety"><img src="https://agentmods.dev/badge/skills/tamagui/tamagui/release-safety.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 264 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 4 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 12
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
  • high Tool Misuse · line 34
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
  • high Tool Misuse · line 13
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
  • high Tool Misuse · line 35
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
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.00000 $0.00264
Opus 5 $0.00000 $0.00132
Sonnet 5 $0.00000 $0.00053
Haiku 4.5 $0.00000 $0.00026

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

Security

Grade A, and why

release-safety 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.

.claude/skills/release-safety/SKILL.md · 37 lines

What it actually says

release safety

rules for running releases in this monorepo.

rules

  • NEVER add --skip-checks unless user explicitly says "skip checks"
  • NEVER add --skip-tests unless user explicitly says "skip tests"
  • if checks or tests fail, FIX THE ISSUES instead of skipping
  • ask user before adding any skip flags
  • the point of checks is to catch problems before publishing

when things fail

  1. read the error output carefully
  2. fix the underlying issue
  3. re-run the release
  4. do NOT just skip the failing step

common flags

safe flags:

  • --canary - publish canary version
  • --ci - run in ci mode
  • --dirty - allow dirty working directory
  • --build-fast - faster builds

dangerous flags (require explicit permission):

  • --skip-checks - skips type checking
  • --skip-tests - skips test suite
  • --skip-build - skips building packages
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 · 37 lines · 0 tokens per session scan A c171df901d3e

Subscribe to this mod's changes

release-safety is a skill published in the GitHub repository tamagui/tamagui (14,184 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 264 tokens. 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.

Related

Other skills, from other repositories

compiler-commit

Use when you want to verify compiler changes and commit with the correct convention. Runs tests, lint, and format, then commits with the [compiler] or [rust-compiler] prefix.

react/react · 42 tokens

compiler-port

Port a compiler pass from TypeScript to Rust. Gathers context, plans the port, implements in a subagent with test-fix loop, then reviews.

react/react · 35 tokens

compiler-verify

Use when you need to run all compiler checks (tests, lint, format) before committing. Detects whether TS or Rust code changed and runs the appropriate checks.

react/react · 37 tokens

react-native-testing

Write tests using React Native Testing Library (RNTL) v13 and v14 (@testing-library/react-native). Use when writing, reviewing, or fixing React Native component tests. Covers: render, screen, queries (getBy/getAllBy/queryBy/findBy), Jest matchers, userEvent, fireEvent, waitFor, and async patterns. Supports v13 (React…

callstack/react-native-testing-library · 134 tokens

beui

Pick and install beUI (@beui) animated React components from the shadcn registry. Use when building motion UI, agent/chat interfaces, toasts, docks, bottom sheets, drawers, popovers, sliders, loaders, 404 pages, or any beui.dev component. Maps user intent to exact @beui install slugs instead of inventing custom…

starc007/ui-components · 78 tokens

beui-pro

Choose, inspect, install, and compose licensed beUI Pro premium React blocks from the authenticated shadcn registry. Use when building or improving landing pages with beUI Pro, installing @beui-pro items, selecting premium heroes, features, pricing, social proof, CTAs, navigation, footers, or other page sections, or…

starc007/ui-components · 83 tokens