resonance-ops-ship

resonance-ops-ship is a skill for Claude Code, Codex from manusco/resonance. It costs 45 tokens per session (1,601 once invoked), scanned A, original, MIT.

A release and deployment checklist for moving tested code into production, the live environment users access. It covers version tags, changelogs, documentation, verification, and rollback planning.

In plain words
What is it for?
Preparing releases, running tests and builds, checking bundle size, applying semantic versioning, updating changelogs, tagging commits, deploying, and running post-deployment checks.
Why use it?
It reduces the risk of publishing untested code or losing track of what changed. It also checks that the live system is healthy after deployment.

Skill for Claude CodeCodex

Part of the resonance plugin — 83 skills, 38 commands shipped together

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.

agentmods
npx agentmods add skills/manusco/resonance/ship
Any agent
npx skills add manusco/resonance --skill ship
Clone the repo
git clone --depth 1 https://github.com/manusco/resonance

Made for: Claude Code, Codex.

Or install resonance, the plugin that ships this one along with the rest of its 83 skills, 38 commands.

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 resonance-ops-ship

README.md
[![agentmods](https://agentmods.dev/badge/skills/manusco/resonance/ship.svg)](https://agentmods.dev/skills/manusco/resonance/ship)
Your own site
<a href="https://agentmods.dev/skills/manusco/resonance/ship"><img src="https://agentmods.dev/badge/skills/manusco/resonance/ship.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,601 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00045 $0.01601
Opus 5 $0.00023 $0.00800
Sonnet 5 $0.00009 $0.00320
Haiku 4.5 $0.00005 $0.00160

Measured yesterday against content hash a5260dee7aca, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

resonance-ops-ship 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 yesterday.

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.

.agents/skills/ops/ship/SKILL.md · 80 lines

How it starts

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

/resonance-ops-ship: safe transport of code to user

Role: the Logistics Officer. Invoked as: /ship (to deploy the project). Input: Merged main branch. Output: Deployed artifact + Tagged Release. Definition of Done: Artifact is verified before tagging. Semantic versioning is correctly applied. Changelog is updated. Commits are logical (not one massive WIP). Release is tagged and pushed. Docs are in sync (doc_drift.py clean: version, command map, and counts agree). Production is verified healthy after deploy (a post-deploy smoke test passes and the error rate is normal), and a rollback path was known before the deploy started.

Shipping is irreversible. You must verify the artifact before you tag it. You are the last line of defense.

Prerequisites (fail fast)

  • Branch is main.
  • Local tree is clean.
  • CI is Green.

Algorithm (Execution)

Copy this checklist and tick items as you go.

  1. Pre-Flight Check: Detect the project's toolchain first (see Toolchain Detection); do not assume npm.
    • Safety: Run the project's test command.
    • Build: Run the project's build command.
    • Perf: Check bundle sizes (ensure no massive chunks).
    • SEO: Delegate to resonance-marketing-seo to verify Meta Tags, Sitemap, and Robots.txt.
  2. Blueprint Release Gate: When .resonance/04_systems.md contains an approved blueprint, screen the release diff for governed architecture changes. Run /blueprint check for every material hit and require all affected SYS-* rules to conform or have an approved exception before tagging. Record a one-sentence justified skip for local releases. Do not invent a baseline. → verify: conformance evidence, approved exceptions, or the skip reason is in the release evidence.
  3. Necessity Release Gate: Review the release diff with the Necessity Protocol after correctness gates and before versioning. Look for avoidable dependencies, duplicate helpers, speculative abstractions, pass-through wrappers, and custom code that the runtime or platform already owns. If a material cut exists, stop and route it through /refactor; do not rewrite code during shipping. Then restart pre-flight checks. Never gate on line count or cut protected behavior. → verify: lean, or refactor completed and all gates rerun.
  4. Versioning: Determine Semantic Version (Major = Breaking, Minor = Feat, Patch = Fix). Update package.json.
  5. Changelog & Docs Sync: Use git log --oneline [last_tag]..HEAD and update CHANGELOG.md with human-readable notes. Then run py .forge/doc_drift.py to confirm the version, command map, and skill and command counts match across README.md, AGENTS.md, and the manifests. Fix any drift before committing.
  6. Logical Commits & Push: Instead of one massive "WIP" commit, bisect the code into logical commits (chore: setup, feat: models, feat: UI, docs: version bump).
  7. Tag & Release: git tag vX.Y.Z, then git push origin main --tags. Confirm the rollback path first (a previous release, a feature flag, or a canary you can abort) so you can undo before you deploy.
  8. Deploy, canary first where supported: Roll out to a small slice before everyone. Watch the health window before promoting to full traffic. If there is no canary path, deploy and go straight to verification with a tighter watch.
  9. Verify the deploy (do not skip): After deploy, prove production is healthy. Run a post-deploy smoke test against prod: the health endpoint, one critical user path, the error rate, and the key metrics versus baseline. The deploy is done when production is confirmed healthy, not because the pipeline went green.
  10. Rollback on failure: If verification fails, execute the rollback plan immediately (abort the canary or roll back to the previous release). Restore production first, then investigate. See Canary and Rollback.

Read the full file on GitHub · 80 lines

Files

What ships with it

7 files 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. yesterday Changed · +6 lines a5260dee7aca
  2. 5d ago First seen · 74 lines · 45 tokens per session scan A 22823c74d7f8

Subscribe to this mod's changes

resonance-ops-ship is a skill published in the GitHub repository manusco/resonance (37 stars, last pushed 3d ago), licensed MIT. It adds 45 tokens to every session and 1,601 once invoked, about $0.0002 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.