release

release is a skill for Claude Code from davidmigloz/ai_clients_dart. It costs 63 tokens per session (7,179 once invoked), scanned A, original, MIT.

A release workflow for Dart packages in the ai_clients_dart monorepo, a repository that contains multiple related packages. It checks changes, updates versions and changelogs, publishes packages, and creates GitHub releases and tags.

In plain words
What is it for?
Use it to plan, dry-run, or complete package releases, including semantic version changes, pub.dev publishing, Git tags, and combined GitHub release notes.
Why use it?
It gathers the release tasks into one process and supports planning or testing the release before publishing it.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: mentions subagents; positional $N argument; installed under .agents/ (shared by several agents).

Good fit Use it to plan, dry-run, or complete package releases, including semantic version changes, pub.dev publishing, Git tags, and combined GitHub release notes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/davidmigloz/ai_clients_dart/release
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 davidmigloz/ai_clients_dart --skill release
Clone the repo
git clone --depth 1 https://github.com/davidmigloz/ai_clients_dart

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/davidmigloz/ai_clients_dart/release/github.svg)](https://agentmods.dev/skills/davidmigloz/ai_clients_dart/release)
Your own site
<a href="https://agentmods.dev/skills/davidmigloz/ai_clients_dart/release"><img src="https://agentmods.dev/badge/skills/davidmigloz/ai_clients_dart/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/davidmigloz/ai_clients_dart/release"><img src="https://agentmods.dev/badge/skills/davidmigloz/ai_clients_dart/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,179 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: 5 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 303
    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 312
    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 305
    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 315
    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 337
    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.00063 $0.07179
Opus 5 $0.00032 $0.03589
Sonnet 5 $0.00013 $0.01436
Haiku 4.5 $0.00006 $0.00718

Measured 10d ago against content hash b009a5aa22d6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, 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 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.

.agents/skills/release/SKILL.md · 519 lines

How it starts

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

Release Skill for ai_clients_dart

This skill handles the full release lifecycle for the ai_clients_dart monorepo. It supports three execution modes controlled via $ARGUMENTS:

  • /release --plan — Plan-only mode: detects changes, computes bumps, shows release plan. No file edits, no publish, no tags. Safe to run on any branch.
  • /release --dry-run — Dry-release mode: does everything including file edits and dart pub publish --dry-run, but stops before actual publishing/tagging/committing. Always restores the working tree before exit (on both success and failure).
  • /release — Full release mode: the complete workflow.

Parse $ARGUMENTS to determine the mode. If $ARGUMENTS contains --plan, run in plan-only mode. If it contains --dry-run, run in dry-run mode. Otherwise, run in full release mode.


Step 1: Validate Environment

Perform all applicable checks before proceeding. Fail fast with an actionable error message if any check fails.

  1. Branch check (full release mode only): Must be on main branch. In --plan and --dry-run modes, any branch is allowed (but warn the user that results may differ from main).
    git branch --show-current  # must output "main" in full release mode
    
  2. Clean working tree: No uncommitted changes.
    git status --porcelain  # must be empty
    
  3. Up-to-date with remote (full release mode only):
    git fetch origin main
    test "$(git rev-parse HEAD)" = "$(git rev-parse origin/main)"  # HEAD must equal origin/main
    
    In --plan and --dry-run modes, skip this check.
  4. CLI availability: dart and gh must be on PATH.
  5. Auth preflight (skip in --plan mode):
    • GitHub: gh auth status — must show authenticated. If not, tell user to run gh auth login.
    • pub.dev: There are two authentication mechanisms:
      • OAuth session (from dart pub login) — this is the primary and recommended method. It does NOT appear in dart pub token list.
      • Token-based (from dart pub token add) — these appear in dart pub token list but are less common.
    • Do not assume unauthenticated just because dart pub token list is empty. An active OAuth session is invisible to that command.
    • Reliable verification: Run dart pub publish --dry-run in any package directory as the auth smoke test. If it succeeds (exit code 0, no auth errors), authentication is working regardless of the mechanism.
      cd packages/{any_pkg} && dart pub publish --dry-run 2>&1
      
    • If the dry-run fails with an authentication error, tell the user to run dart pub login (OAuth, recommended) or dart pub token add https://pub.dev (token-based, alternative).

Read the full file on GitHub · 519 lines

Files

What ships with it

3 files 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. 10d ago First seen · 519 lines · 63 tokens per session scan A b009a5aa22d6

Subscribe to this mod's changes

release is a skill published in the GitHub repository davidmigloz/ai_clients_dart (24 stars, last pushed yesterday), licensed MIT. It adds 63 tokens to every session and 7,179 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.