agentbro: Skill for Claude Code

.agents/skills/agentbro-release/SKILL.md

agentbro-release is a skill for Claude Code, Codex from shirenchuang/agentbro. It costs 46 tokens per session (2,564 once invoked), scanned A, original, Apache-2.0.

A repository-specific skill for releasing AgentBro. It covers preparing versions, release notes, Git branches and tags, and release automation.

In plain words
What is it for?
Use it for AgentBro releases, including merging branches, bumping versions, tagging, pushing, monitoring GitHub Actions, publishing the Homebrew cask, or correcting a faulty release.
Why use it?
It reduces release mistakes by enforcing checks around version numbers, unrelated local changes, tags, pull requests, and publishing steps.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; installed under .agents/ (shared by several agents); mentions Codex.

This is shirenchuang/agentbro's own configuration. It tells Claude Code and Codex how to work on agentbro 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 agentbro configures →

Reuse

Borrowing it

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

Made for: Claude Code, Codex.

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 agentbro-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/shirenchuang/agentbro/agentbro-release.svg)](https://agentmods.dev/skills/shirenchuang/agentbro/agentbro-release)
Your own site
<a href="https://agentmods.dev/skills/shirenchuang/agentbro/agentbro-release"><img src="https://agentmods.dev/badge/skills/shirenchuang/agentbro/agentbro-release.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,564 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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: 6 findings, up to medium

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 →

  • medium Data Exfiltration · line 239
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 246
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • low Supply Chain · line 239
    Remote code is downloaded and executed. This bypasses code review and could introduce malicious code.
    Fix: Avoid downloading and executing remote scripts. Use trusted packages from PyPI/npm. If remote fetch is required, verify checksums and use HTTPS.
  • low Supply Chain · line 246
    Remote code is downloaded and executed. This bypasses code review and could introduce malicious code.
    Fix: Avoid downloading and executing remote scripts. Use trusted packages from PyPI/npm. If remote fetch is required, verify checksums and use HTTPS.
  • low Supply Chain · line 253
    Remote code is downloaded and executed. This bypasses code review and could introduce malicious code.
    Fix: Avoid downloading and executing remote scripts. Use trusted packages from PyPI/npm. If remote fetch is required, verify checksums and use HTTPS.
  • low Supply Chain · line 260
    Remote code is downloaded and executed. This bypasses code review and could introduce malicious code.
    Fix: Avoid downloading and executing remote scripts. Use trusted packages from PyPI/npm. If remote fetch is required, verify checksums and use HTTPS.
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.00046 $0.02564
Opus 5 $0.00023 $0.01282
Sonnet 5 $0.00009 $0.00513
Haiku 4.5 $0.00005 $0.00256

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

Security

Grade A, and why

agentbro-release scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- If `gh` is not authenticated, use the public GitHub API with `curl` for read-only checks.
.agents/skills/agentbro-release/SKILL.md · 273 lines

How it starts

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

AgentBro Release

Use this repository-scoped skill for AgentBro release work. Keep unrelated local changes out of commits.

Safety Rules

  • Start with git status --short --branch. If unrelated files are dirty, do not stage them.
  • Never reuse or force-move an existing release tag. If a published release is wrong, make the next patch version.
  • Do not edit signing keys, certificates, entitlements, or release secrets.
  • Do not bump versions in feature PRs. Only bump for an actual release.
  • Do not leave dev behind the latest stable release. Every stable release must be merged back through a PR to dev.
  • If gh is not authenticated, use the public GitHub API with curl for read-only checks.

Version Selection

Use semantic versioning when choosing the next release number:

  • Bug fixes and small reliability fixes bump the third number: X.Y.Z -> X.Y.(Z+1).
  • Minor/user-facing feature releases bump the middle number and reset patch: X.Y.Z -> X.(Y+1).0.
  • Major breaking releases bump the first number and reset the rest: X.Y.Z -> (X+1).0.0.

When the maintainer explicitly asks for a version, use that version after confirming the tag does not already exist locally or remotely.

Version Files

All four must match:

  • package.json
  • src-tauri/tauri.conf.json
  • src-tauri/Cargo.toml
  • src-tauri/Cargo.lock

After editing the first three, update the lockfile with:

cargo update --manifest-path src-tauri/Cargo.toml -p agentbro

Run:

pnpm release:check

Standard Release Flow

  1. Fetch current remote state:
git fetch origin main dev --tags
  1. If releasing from dev, merge it to main only after dev is pushed:
git checkout main
git pull --ff-only origin main
git merge --no-ff origin/dev -m "Merge branch 'dev' into main"
  1. If main changed while working, pull it before creating the release commit. Stash only your own release edits if needed:
git stash push -u -m "release-work"
git pull --ff-only origin main
git stash pop

Read the full file on GitHub · 273 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. 8d ago First seen · 273 lines · 0 tokens per session scan A cbde95a313d6

Subscribe to this mod's changes

agentbro-release is a skill published in the GitHub repository shirenchuang/agentbro (213 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 46 tokens to every session and 2,564 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.