Borrowing it
Nothing to install: this file belongs to amyodov/yet-another-agentic-chat. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/amyodov/yet-another-agentic-chat/main/.claude/skills/releasing/SKILL.mdgit clone --depth 1 https://github.com/amyodov/yet-another-agentic-chatWrote 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.
[](https://agentmods.dev/skills/amyodov/yet-another-agentic-chat/releasing)<a href="https://agentmods.dev/skills/amyodov/yet-another-agentic-chat/releasing"><img src="https://agentmods.dev/badge/skills/amyodov/yet-another-agentic-chat/releasing/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.
<a href="https://agentmods.dev/skills/amyodov/yet-another-agentic-chat/releasing"><img src="https://agentmods.dev/badge/skills/amyodov/yet-another-agentic-chat/releasing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01500 |
| Opus 5 | $0.00000 | $0.00750 |
| Sonnet 5 | $0.00000 | $0.00300 |
| Haiku 4.5 | $0.00000 | $0.00150 |
Grade A, and why
releasing 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 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- Confirm PyPI serves the new version: `curl -s https://pypi.org/pypi/yet-another-agentic-chat/json` → How it starts
The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release a version of YAAC
One release reaches PyPI, the git tag and GitHub release, the official MCP registry, and Context7.
Releases only happen when the user asks for one — disable-model-invocation enforces that, and nothing in this
file overrides it. The version being released is $1 (e.g. 0.1.1): a bare semver, no leading v — the tag adds it.
The publish pipeline is: GitHub release → .github/workflows/publish.yml → PyPI trusted publisher (OIDC, no
tokens). This skill's job is everything around that trigger, in order, aborting loudly at the first failure
rather than improvising past it.
1. Preconditions
- Working tree clean, on
main, in sync withorigin/main(git status -sb). Unpushed work either goes into the release consciously or waits — it must not ride along by accident. $1is not already released: absent fromgit tagand fromhttps://pypi.org/pypi/yet-another-agentic-chat/json.- The full local suite passes:
uv run pytest. - CI is green on HEAD for all three OSes:
gh run list --branch main --limit 1. Local tests cannot vouch for Windows; only the matrix can.
2. Version bump
Set version = "$1" in pyproject.toml, run uv sync so uv.lock follows, then regenerate the plugin
manifests, which carry the version too:
uv run python ${CLAUDE_SKILL_DIR}/scripts/generate_manifests.py
Commit all of it together. The version in the code and the version being tagged must be the same string — a wheel that reports a different version than its tag is a support puzzle nobody needs.
3. Tag and release
Push the bump first, then wait for its own CI run to go green before tagging. The green checked in step 1 was for the commit before the bump; pushing starts a fresh run, and the commit being released is the one nobody has verified yet. A red Windows job has hidden here before.
git push origin main
until [ "$(gh run list --branch main --limit 1 --json status --jq '.[0].status')" = completed ]; do sleep 20; done
gh run list --branch main --limit 1 --json headSha,conclusion --jq '.[0] | "\(.headSha[0:7]) \(.conclusion)"'
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.
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.
- 9d ago First seen · 114 lines · 0 tokens per session scan A 864c3060a300
releasing is a skill published in the GitHub repository amyodov/yet-another-agentic-chat (4 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,500 tokens. 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-31.
Other skills, from other repositories
release-doc-sync
Prepares or applies bounded documentation updates for the current workspace changes.
release-readiness-check
Runs the existing repo checks that already exist, then turns the raw outcomes into a short readiness report with blockers and next actions.
release-announcement
Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.
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…
codew-release-qa-sweep
Use before claiming Codewhale release work is done: run the full gate sweep and list the manual QA targets.
release
Skill "release" from Hmbown/Codewhale, covering release, invocation, non-goals and workflow.