ship

ship is a skill for Claude Code, Codex from Himanshu-Sangshetti/cursor-stack. It costs 45 tokens per session (809 once invoked), scanned A, original, MIT.

A release workflow for preparing software changes to land in a shared code repository. It checks the diff, synchronizes with the main branch, runs tests and linting, and can create a pull request.

In plain words
What is it for?
Use it when changes are ready to commit, push, merge, or submit for review.
Why use it?
It reduces release mistakes such as shipping debug code, secrets, failing tests, or unresolved branch conflicts. The checklist makes the final handoff repeatable.

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

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 ship

README.md
[![agentmods](https://agentmods.dev/badge/skills/himanshu-sangshetti/cursor-stack/ship.svg)](https://agentmods.dev/skills/himanshu-sangshetti/cursor-stack/ship)
Your own site
<a href="https://agentmods.dev/skills/himanshu-sangshetti/cursor-stack/ship"><img src="https://agentmods.dev/badge/skills/himanshu-sangshetti/cursor-stack/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 809 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.00809
Opus 5 $0.00023 $0.00404
Sonnet 5 $0.00009 $0.00162
Haiku 4.5 $0.00005 $0.00081

Measured 3d ago against content hash b6819fd69152, 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 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 3d 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.

ship/SKILL.md · 142 lines

How it starts

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

Ship - Release Engineer Mode

You are now in Release Engineer mode. The thinking is done. Your job is disciplined execution to land this code.

Your Mindset

  • No more ideation or discussion
  • Follow the checklist methodically
  • Surface blockers immediately, don't hide them
  • Momentum matters - get the code landed

Project Overrides

If @cursor-stack or AGENTS.md contains a cursor-stack section with mainBranch or testCommand, apply those values. Use mainBranch (e.g., main, master) for git rebase/diff commands instead of hardcoded main. Use testCommand for the test step instead of npm test.

Pre-Ship Checklist

Before shipping, verify:

[ ] All changes are intentional (git diff review)
[ ] No debug code or console.logs left behind
[ ] No commented-out code that should be removed
[ ] No secrets or credentials in the diff
[ ] Tests pass locally
[ ] Linting passes

Ship Process

Step 1: Sync with Main

git fetch origin
git rebase origin/main  # or merge, based on project convention

If conflicts exist, resolve them carefully and verify the resolution.

Step 2: Run Tests

# Run the project's test command
npm test        # or pytest, cargo test, etc.

If tests fail, stop and fix. Don't ship broken code.

Step 3: Final Diff Review

git diff origin/main --stat  # Overview of changes
git diff origin/main          # Full diff

Quick scan for:

  • Accidental file inclusions
  • Debug statements
  • Anything that shouldn't ship

Step 4: Commit (if needed)

If there are uncommitted changes:

git add -A
git commit -m "<type>(<scope>): <description>"

Commit message format:

  • feat: New feature
  • fix: Bug fix
  • refactor: Code change that neither fixes nor adds
  • docs: Documentation
  • test: Adding tests
  • chore: Maintenance

Step 5: Push

git push origin HEAD
# or for new branches:
git push -u origin HEAD

Step 6: Create PR

gh pr create --title "<title>" --body "## Summary\n- What this PR does\n\n## Changes\n- Key changes\n\n## Testing\n- How tested"

Read the full file on GitHub · 142 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. 3d ago First seen · 142 lines · 45 tokens per session scan A b6819fd69152

Subscribe to this mod's changes

ship is a skill published in the GitHub repository Himanshu-Sangshetti/cursor-stack (6 stars, last pushed 5mo ago), licensed MIT. It adds 45 tokens to every session and 809 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-31.