git-monorepo-release

git-monorepo-release is a skill for Claude Code from jtprogru/bear-skills. It costs 188 tokens per session (1,853 once invoked), scanned A, original, MIT.

A release workflow for a monorepo—a single repository containing several packages that can each have their own version.

In plain words
What is it for?
It identifies affected packages, chooses version updates, creates package-specific tags, and can backport a fix to an older release branch.
Why use it?
It helps prevent packages from receiving incorrect versions or release tags when only some parts of the repository changed.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths.

Part of the bear-skills plugin — 42 skills, 3 commands, 11 agents, 1 hook shipped together

Good fit It identifies affected packages, chooses version updates, creates package-specific tags, and can backport a fix to an older release branch.

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

Made for: Claude Code.

Or install bear-skills, the plugin that ships this one along with the rest of its 42 skills, 3 commands, 11 agents, 1 hook.

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 git-monorepo-release

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/jtprogru/bear-skills/git-monorepo-release"><img src="https://agentmods.dev/badge/skills/jtprogru/bear-skills/git-monorepo-release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 188 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,853 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.00188 $0.01853
Opus 5 $0.00094 $0.00927
Sonnet 5 $0.00038 $0.00371
Haiku 4.5 $0.00019 $0.00185

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

Security

Grade A, and why

git-monorepo-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 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.

domains/git/skills/git-monorepo-release/SKILL.md · 143 lines

How it starts

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

git-monorepo-release — Релиз монорепо с независимыми версиями

Цель: в репозитории, где живёт несколько пакетов со своими версиями, определить состав релиза и провести его так, чтобы версии не поехали друг относительно друга.

Перед началом прочитай ~/.claude/rules/git-conventions.md — разделы про Semver и теги.

Постановку одного тега с changelog делает git-release-tag. Этот скилл решает, какие теги ставить и почему, и вызывает git-release-tag на каждый.

Границы

Скилл применим, когда в репозитории больше одного независимо версионируемого пакета. Проверь это до всего остального:

git tag --list --sort=-v:refname | head -20
ls -d */ | head -20

Признаки монорепо с независимыми версиями: теги вида <name>/vX.Y.Z, несколько директорий с собственными манифестами (go.mod, package.json, pyproject.toml, *.csproj).

Если пакет один — скажи об этом и передай работу git-release-tag. Не изобретай монорепо там, где его нет.

Шаг 1. Определи затронутые пакеты

Возьми диапазон с последнего релиза каждого пакета и посмотри, что реально менялось:

# последний тег конкретного пакета
git tag --list 'sdk-go/v*' --sort=-v:refname | head -1

# что изменилось в его директории с тех пор
git log sdk-go/v0.3.0..HEAD --oneline -- sdk-go/

Пройди так по каждому пакету. Пакет без коммитов в своей директории не релизится — даже если релизится соседний.

Осторожно с изменениями вне директорий пакетов: правка общей спецификации, protobuf-схемы или генератора может затрагивать всех потребителей, не оставив коммитов в их папках. Такие коммиты покажи пользователю отдельно и спроси, чьи версии они двигают.

Шаг 2. Определи bump для каждого пакета

Semver считается для каждого пакета отдельно. Breaking change в Go SDK не двигает версию Python SDK.

изменение что бампить
только спецификация, реализации не тронуты ничего — до момента реализации в пакетах
баг в одном пакете только его, patch
фича, реализованная в нескольких пакетах каждый затронутый, отдельным тегом, minor
breaking change в пакете версии < 1.0 только его, minor
breaking change в пакете версии ≥ 1.0 только его, major

Read the full file on GitHub · 143 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 · 143 lines · 188 tokens per session scan A 016be5f9acaf

Subscribe to this mod's changes

git-monorepo-release is a skill published in the GitHub repository jtprogru/bear-skills (1 stars, last pushed 22d ago), licensed MIT. It adds 188 tokens to every session and 1,853 once invoked, about $0.0009 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.

Related

Other skills, from other repositories

shipping-and-launch

Use before any production deployment or release, when preparing to launch a feature, when validating release readiness, when a rollback plan is needed before shipping, or when a pre-launch gate is required before approving a deploy.

aneja5/forge-skills · 46 tokens

release-notes

Generate audience-targeted release announcements. Specify the audience (customers, internal team, investors, social media) and optionally a version or scope. Use after shipping to announce what was built.

pcatattacks/solopreneur-plugin · 41 tokens

agent-framework-py-release

Use when cutting a Python release for the microsoft/agent-framework monorepo. Triggers on "bump py versions", "cut a python release", "prepare release PR for python", "release py packages", "bump python to X.Y.Z", or similar requests to bump Python package versions and prepare a release PR. Handles all four lifecycle…

microsoft/agent-framework · 103 tokens

create-milestone

Create a GitHub milestone for an upcoming release. Suggests the next version based on the latest release, gathers all merged PRs and closed issues since that release, presents a draft with two tables (Issues and PRs) for user approval, then creates the milestone and assigns all approved items.

agentic-community/mcp-gateway-registry · 64 tokens

pack-submit

Package one of this agent's own skills as a standalone community pack and submit it to the aeon registry as a PR.

aeonfun/aeon · 27 tokens

shiplog

Recap of everything shipped since the last run - cross-repo PRs, security fixes, star deltas, and X traction, synthesized into a digest article and a ready-to-post shiplog in your voice.

aeonfun/aeon · 46 tokens