agentplane-release-and-packaging-operator

agentplane-release-and-packaging-operator is a skill for Claude Code, Codex from basilisk-labs/agentplane. It costs 60 tokens per session (1,589 once invoked), scanned A, original, MIT.

A release and package-publishing procedure for Agentplane projects. It treats a release as a series of states to check, including versions, builds, publication, installation, and recovery from partial failures.

In plain words
What is it for?
Use it to prepare and audit releases, investigate release-related CI failures, publish packages to npm and other listed destinations, and run public installation checks.
Why use it?
It helps avoid publishing mismatched, missing, private, stale, or unverified packages.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node scripts/check-npm-version-availability.mjs <version>.

Good fit Use it to prepare and audit releases, investigate release-related CI failures, publish packages to npm and other listed destinations, and run public installation checks.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/basilisk-labs/agentplane
agentmods
npx agentmods add skills/basilisk-labs/agentplane/agentplane-release-and-packaging-operator

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 agentplane-release-and-packaging-operator

README.md
[![agentmods](https://agentmods.dev/badge/skills/basilisk-labs/agentplane/agentplane-release-and-packaging-operator.svg)](https://agentmods.dev/skills/basilisk-labs/agentplane/agentplane-release-and-packaging-operator)
Your own site
<a href="https://agentmods.dev/skills/basilisk-labs/agentplane/agentplane-release-and-packaging-operator"><img src="https://agentmods.dev/badge/skills/basilisk-labs/agentplane/agentplane-release-and-packaging-operator.svg" alt="Measured on agentmods" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,589 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
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.00060 $0.01589
Opus 5 $0.00030 $0.00794
Sonnet 5 $0.00012 $0.00318
Haiku 4.5 $0.00006 $0.00159

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

Security

Grade A, and why

agentplane-release-and-packaging-operator 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 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.

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.

skills/agentplane-release-and-packaging-operator/SKILL.md · 165 lines

How it starts

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

Agentplane Release And Packaging Operator

Use This Skill When

  • A task mentions release, publish, npm, provenance, package version parity, release-ready, or install smoke.
  • CI fails in package build or release gates.
  • A public install fails because a workspace package is missing, private, stale, or unpublished.
  • A release partially completed and you must decide whether to roll forward or stop.

Core Rule

Treat release work as a state machine, not a linear script. Before mutating, identify the current state of git tags, package versions, generated manifests, hosted workflows, and npm visibility.

Required Preflight

  1. Run the normal Agentplane preflight and load release policy when release/version/publish files are in scope.
  2. Inspect the release task README and agentplane task verify-show <task-id>.
  3. Check working tree cleanliness with git status --short --untracked-files=no.
  4. Inspect recent release incidents:
    • agentplane incidents advise --tag release --tag recipes --tag workflow --scope "<release scope>"
  5. Confirm which packages are release participants:
    • @agentplaneorg/core
    • @agentplaneorg/recipes
    • agentplane

Version And Public Package Checks

Use these before publishing and during recovery:

bun run release:parity
bun run release:state
node scripts/check-npm-version-availability.mjs <version>
npm view @agentplaneorg/core@<version> version
npm view @agentplaneorg/recipes@<version> version
npm view agentplane@<version> version

Expected invariant: core, recipes, CLI package versions, and CLI dependencies on core/recipes all agree with the release version.

Script Entry Points

Use the repo-local wrappers before composing ad hoc release command sequences:

bun run release:state
bun run release:next-action -- --check-registry
bun run release:version:bump -- --bump patch
bun run release:version:bump -- --version <version> --write
bun run release:candidate:prepare
bun run release:evidence:collect -- --version <version>

Read the full file on GitHub · 165 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 · 165 lines · 60 tokens per session scan A 14709590111c

Subscribe to this mod's changes

agentplane-release-and-packaging-operator is a skill published in the GitHub repository basilisk-labs/agentplane (76 stars, last pushed today), licensed MIT. It adds 60 tokens to every session and 1,589 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

release-expert

Multi-repo release coordination: version alignment, RC lifecycle, release waves, rollback planning. Use when saying "release", "version alignment", or "cut an RC".

anton-abyzov/specweave · 0 tokens

release

Prepare code for release (version bumps, changelog, README updates) and create an annotated tag to trigger the GoReleaser workflow.

jrswab/axe · 30 tokens

checking-release-readiness

Records a ship, block, defer, or ship-with-risk decision that ties baseline, evidence status, residual risk, rollback, monitoring, and handoff together. Use when a packet, PR, release, dependency change, or agent-authority change approaches merge. Do not use early in development before evidence exists.

FlyFission/nuclear-grade-context-engineering · 67 tokens

brpr

(devtools plugin) Create a branch, commit changes, push, and open a PR — or just commit+push+PR if already on a feature branch. Links related issues from GitHub or Linear based on project tracker config.

feniix/pi-extensions · 49 tokens

release

Release Aigon — push to origin, cut a version+tag, or publish to npm. Wraps scripts/ship.js with CHANGELOG draft + dry-run preview. Triggers when the user types "/release", "/push", "/ship", or says "ship a release", "publish a beta", "cut a version", "push to origin", "release X to npm".

jayvee/aigon · 79 tokens

release

Automate the release process. Use when user says "cut a release", "new version", "bump version", "publish release", or anything about versioning and publishing.

feniix/pi-extensions · 38 tokens