project-standard-release

project-standard-release is a skill for Claude Code from big-emotion/agent-atelier. It costs 138 tokens per session (3,086 once invoked), scanned A, original, MIT.

A release-preparation skill for an Agent Atelier plugin marketplace repository. It updates version files and the changelog, then creates a local Git commit and tag before asking for permission to push.

In plain words
What is it for?
Bumping patch, minor, major, or specified versions; updating release files; creating annotated Git tags; and preparing GitHub Releases.
Why use it?
It reduces the manual work of keeping multiple release versions and changelog entries consistent, while leaving the final push under explicit control.

Skill for Claude Code

Written for Claude Code: Claude Code plugin machinery. Also seen: mentions Claude Code.

Good fit Bumping patch, minor, major, or specified versions; updating release files; creating annotated Git tags; and preparing GitHub Releases.

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

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 project-standard-release

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/big-emotion/agent-atelier/project-standard-release"><img src="https://agentmods.dev/badge/skills/big-emotion/agent-atelier/project-standard-release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 138 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,086 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.00138 $0.03086
Opus 5 $0.00069 $0.01543
Sonnet 5 $0.00028 $0.00617
Haiku 4.5 $0.00014 $0.00309

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

Security

Grade A, and why

project-standard-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.

.claude/skills/project-standard-release/SKILL.md · 244 lines

How it starts

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

Agent Atelier Release

Prepare a release locally (bump version, update CHANGELOG, create the commit and tag), then ask for explicit confirmation before pushing.

This skill writes to the local repo first. It only runs git push after the user explicitly confirms. Without confirmation, the commit + tag stay local.

A release here has no deploy. This repo is a Claude Code plugin marketplace: pushing the tag triggers no workflow — nothing builds, nothing ships to a server. Distribution is the git repo itself (/plugin marketplace add big-emotion/agent-atelier); the GitHub Release is created directly by this skill with gh release create after the push.

When to Activate

  • User says: "release project-standard", "cut a release", "bump version", "tag a new version", "ship a release".
  • User invokes /project-standard-release (optionally with a bump level: patch | minor | major | <explicit-version>).

Preconditions

Verify all of the following before any write. If any fail, do not modify anything — report the blocker and exit.

  1. In the repo rootpackage.json has "name": "@big-emotion/agent-atelier" (the scoped npm name; the skill prefix stays project-standard). If not, stop and tell the user to cd to the right directory.
  2. Clean working treegit status --porcelain must be empty. If dirty, stop and ask the user to commit or stash.
  3. On main branchgit branch --show-current must return main. If not, stop. This is a single-branch repo: main serves as both integration and release branch (deliberate M6 adaptation for a tooling/plugin repo — there is no develop).
  4. Up to date with origin/main — run git fetch origin then git rev-list --count main..origin/main. If > 0, stop and tell the user to git pull.
  5. CI green on HEAD — run:
    HEAD_SHA=$(git rev-parse HEAD)
    gh run list --repo big-emotion/agent-atelier \
      --commit "$HEAD_SHA" --workflow ci.yml \
      --limit 1 --json conclusion,status,url
    
    The latest run must have conclusion: "success" (ci.yml runs on pushes to main, so HEAD should have a run). If no run exists for HEAD, or the conclusion is not success, stop and provide the run URL so the user can investigate.
  6. Local gates greennpm test, npm run check:templates, and npm run check:manifests must all exit 0. This is the repo's whole quality surface (unit tests on the checkers, placeholder-registry validation, marketplace/version lockstep); a release with a red checker would ship broken templates or a drifted marketplace.
  7. Manifest versions in sync — every version carrier must already agree before the bump: package.json .version, every plugins/*/.claude-plugin/plugin.json .version, and every .claude-plugin/marketplace.json .plugins[] entry (npm run check:manifests verifies exactly this). If they disagree, stop and report the drift — fix it as a bug first; do not paper over it inside a release.

Read the full file on GitHub · 244 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. 10d ago First seen · 244 lines · 138 tokens per session scan A 18af9103a0c7

Subscribe to this mod's changes

project-standard-release is a skill published in the GitHub repository big-emotion/agent-atelier (2 stars, last pushed 3d ago), licensed MIT. It adds 138 tokens to every session and 3,086 once invoked, about $0.0007 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

push-ci

Push to remote and monitor CI. Validates branch safety, executes git push WITH explicit user approval, then monitors CI run status via gh CLI. Use when: user says 'push', 'push and watch CI', 'ship it', 'push-ci'. Not for: committing (use /smart-commit), creating PRs (use /create-pr), merging (use /merge-prep).

sd0xdev/sd0x-harness · 82 tokens

ops-ship

OPS on-demand: This skill should be used when the user asks to "ship ops plugin", "merge all PRs and…

Lifecycle-Innovations-Limited/claude-ops · 30 tokens

pipeline-digest

Daily release-pipeline digest with a change gate — reports which plugins are pending release, whether main's CI is green, and which branches went stale, and notifies the operator only when that state actually moved since the last run. Use when the operator asks "what moved in the pipeline", "anything to ship"…

gtapps/claude-code-hermit · 99 tokens

merge-queue-thrash-stop-inflow-and-open-prs-as-drafts

When main moves faster than the slowest CI leg, every open branch goes stale before it can merge and the whole queue jams with nothing red. Use when: (1) several PRs sit at mergeStateStatus BEHIND with auto-merge armed and none of them lands; (2) branches are being updated, re-running CI and going stale again before…

wan-huiyan/agent-traffic-control · 285 tokens

public-release-prep

Audit a private git repository for secrets and personally-identifying info before it goes public, then carry out the cleanup. Use this whenever the user wants to open-source a repo, flip a GitHub repo from private to public, "clean up before going public," or asks whether a repo is safe to share externally — even if…

S24DeFi/global-lib-skills · 151 tokens

open-pr

Use this skill to submit the commits on the current branch as one pull request against a GitHub repository. Push the branch, open the PR with an imperative title and a body that names what changed and why, and post a follow-up ping only when CODEOWNERS resolves to one person. One branch per run, one pull request per…

khrichtchatyi/ship-it · 79 tokens