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.
npx skills add big-emotion/agent-atelier --skill project-standard-releasegit clone --depth 1 https://github.com/big-emotion/agent-atelierWrote 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/big-emotion/agent-atelier/project-standard-release)<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.
<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>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.00138 | $0.03086 |
| Opus 5 | $0.00069 | $0.01543 |
| Sonnet 5 | $0.00028 | $0.00617 |
| Haiku 4.5 | $0.00014 | $0.00309 |
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.
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.
- In the repo root —
package.jsonhas"name": "@big-emotion/agent-atelier"(the scoped npm name; the skill prefix staysproject-standard). If not, stop and tell the user tocdto the right directory. - Clean working tree —
git status --porcelainmust be empty. If dirty, stop and ask the user to commit or stash. - On
mainbranch —git branch --show-currentmust returnmain. If not, stop. This is a single-branch repo:mainserves as both integration and release branch (deliberate M6 adaptation for a tooling/plugin repo — there is nodevelop). - Up to date with
origin/main— rungit fetch originthengit rev-list --count main..origin/main. If > 0, stop and tell the user togit pull. - CI green on HEAD — run:
The latest run must haveHEAD_SHA=$(git rev-parse HEAD) gh run list --repo big-emotion/agent-atelier \ --commit "$HEAD_SHA" --workflow ci.yml \ --limit 1 --json conclusion,status,urlconclusion: "success"(ci.ymlruns on pushes tomain, so HEAD should have a run). If no run exists for HEAD, or the conclusion is notsuccess, stop and provide the run URL so the user can investigate. - Local gates green —
npm test,npm run check:templates, andnpm run check:manifestsmust 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. - Manifest versions in sync — every version carrier must already agree before the bump:
package.json.version, everyplugins/*/.claude-plugin/plugin.json.version, and every.claude-plugin/marketplace.json.plugins[]entry (npm run check:manifestsverifies exactly this). If they disagree, stop and report the drift — fix it as a bug first; do not paper over it inside a release.
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.
- 10d ago First seen · 244 lines · 138 tokens per session scan A 18af9103a0c7
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.
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).
ops-ship
OPS on-demand: This skill should be used when the user asks to "ship ops plugin", "merge all PRs and…
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"…
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…
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…
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…