ship

A release workflow for putting repository changes into a live environment. It checks the code, commits and pushes changes, deploys according to the project's recipe, then verifies the live site, smoke-test URLs, and a screenshot.

In plain words
What is it for?
Use it to run release checks, create a commit, push to an existing remote, deploy, confirm the live change, check URLs, and capture a desktop screenshot.
Why use it?
It reduces the chance of calling a release complete when deployment failed or the live site still serves an older version. Production deployment and pushing changes require confirmation.

Skill for Claude CodeCodex

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/artttj/rapid-stack/ship
Any agent
npx skills add artttj/rapid-stack --skill ship
Clone the repo
git clone --depth 1 https://github.com/artttj/rapid-stack

Made for: Claude Code, Codex.

Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 375 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00039 $0.00375
Opus 5 $0.00019 $0.00187
Sonnet 5 $0.00008 $0.00075
Haiku 4.5 $0.00004 $0.00038

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

Security

Grade A, and why

ship 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 2d 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.

6. **Smoke**: every URL in recipe `smoke` answers 200 — `curl -s -o /dev/null -w "%{http_code}" <url>`.
plugins/op/skills/ship/SKILL.md · 19 lines

What it actually says

op:ship

The release ritual. Steps run in order; a failing step stops the pipeline and reports.

  1. Preflight: git status — summarize what ships. Run the recipe test command when present; failures stop here.
  2. Commit: follow the repo's own style (git log --oneline -5 first). Stage files by name.
  3. Push: gated (confirm) unless co-pilot armed; to an existing upstream only.
  4. Deploy: recipe deploy — always confirm, armed or not (production). Missing key → op:project-recipes discovery; never guess a target.
  5. Live verify (the blocking step): set BUST to the current epoch seconds; run recipe cache_check with $URL and $BUST substituted, or fetch live_url?v=$BUST and look for a marker from the just-shipped change (new text, version string, asset hash). Stale → report loudly, offer recipe rollback when present, and do not use the word "shipped".
  6. Smoke: every URL in recipe smoke answers 200 — curl -s -o /dev/null -w "%{http_code}" <url>.
  7. Screenshot the live page at a desktop width: Playwright MCP when available, else npx playwright screenshot --viewport-size=1440,900 "$URL" <scratchpad>/ship-<date>.png.

Proof at end: live URL, screenshot path, status line.

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. 2d ago First seen · 19 lines · 39 tokens per session scan A b69d5c4bbac6

Subscribe to this mod's changes

ship is a skill published in the GitHub repository artttj/rapid-stack (2 stars, last pushed 1mo ago), licensed MIT. It adds 39 tokens to every session and 375 once invoked, about $0.0002 per session on Opus 5. 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.

Related

Other skills, from other repositories

land-and-deploy

Land and deploy workflow. (gstack).

garrytan/gstack · 14 tokens

release-plannotator

Prepare and execute a Plannotator release — draft release notes with full contributor credit, bump versions across all package files, build in dependency order, and kick off the tag-driven release pipeline. Use this skill whenever the user mentions preparing a release, bumping versions, writing release notes, tagging…

backnotprop/plannotator · 104 tokens

release

Release workflow for deploying OpenEnv environments to Hugging Face Spaces and keeping canonical references in sync.

huggingface/OpenEnv · 21 tokens

publish

Publish oh-my-opencode to npm by triggering the GitHub Actions publish workflow and verifying its artifacts. Ship-only: never runs pre-publish-review or re-reviews merged code unless the user explicitly asks. Argument: . Triggers: publish, release, deploy, npm publish.

code-yeongyu/oh-my-openagent · 68 tokens

pre-publish-review

Nuclear-grade 16-agent pre-publish release gate. Runs /get-unpublished-changes to detect all changes since last npm release, spawns up to 10 ultrabrain agents for deep per-change analysis, invokes /review-work (5 agents) for holistic review, and 1 oracle for overall release synthesis. Runs ONLY when the user…

code-yeongyu/oh-my-openagent · 154 tokens

work-with-pr

Full PR lifecycle in a fresh task-owned git worktree: implement via the ulw-loop skill with mandatory evidence-bound manual QA → reviewer-readable English PR → verification loop (CI + Cubic, where Cubic is skipped only when its quota is exhausted) → merge by default → worktree cleanup. Decomposes one task into the…

code-yeongyu/oh-my-openagent · 211 tokens