source-command-ship-release

source-command-ship-release is a skill for Claude Code from Parslee-ai/neo. It costs 16 tokens per session (844 once invoked), scanned A, original, Apache-2.0.

A command for carrying out a complete software release, from preparing the version through publishing the package to PyPI, the Python Package Index.

In plain words
What is it for?
Use it to release a new version of a Python project with protected main branches, including creating the release branch and monitoring PyPI publication.
Why use it?
It brings version updates, changelog changes, pull requests, tags, GitHub Releases, and package publication into one defined workflow, while pausing for human review before merging.

Skill for Claude Code

Written for Claude Code: Claude Code plugin machinery. Also seen: installed under .agents/ (shared by several agents); mentions Codex.

Part of the neo plugin — 9 skills, 18 commands, 1 agent, 1 hook 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/parslee-ai/neo/source-command-ship-release
Any agent
npx skills add Parslee-ai/neo --skill source-command-ship-release
Clone the repo
git clone --depth 1 https://github.com/Parslee-ai/neo

Made for: Claude Code.

Or install neo, the plugin that ships this one along with the rest of its 9 skills, 18 commands, 1 agent, 1 hook.

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 source-command-ship-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/parslee-ai/neo/source-command-ship-release.svg)](https://agentmods.dev/skills/parslee-ai/neo/source-command-ship-release)
Your own site
<a href="https://agentmods.dev/skills/parslee-ai/neo/source-command-ship-release"><img src="https://agentmods.dev/badge/skills/parslee-ai/neo/source-command-ship-release.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 844 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.1 $0.00016 $0.00844
Opus 5 $0.00008 $0.00422
Sonnet 5 $0.00003 $0.00169
Haiku 4.5 $0.00002 $0.00084

Measured 6d ago against content hash 1f822808ee41, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

source-command-ship-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 6d 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.

.agents/skills/source-command-ship-release/SKILL.md · 127 lines

How it starts

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

source-command-ship-release

Use this skill when the user asks to run the migrated source command ship-release.

Command Template

Ship Release

Orchestrates the full release workflow: version prep, PR creation, tagging, and PyPI publication.

Usage

/ship-release 0.7.7

What This Does

Runs the complete release workflow for projects with protected main branches:

  1. Invokes /prepare-release to update versions and changelog
  2. Creates release branch (release/v{version})
  3. Commits the changes
  4. Pushes branch and creates PR
  5. PAUSES for human PR review and merge
  6. After merge, creates git tag
  7. Creates GitHub Release (triggers PyPI publish via Actions)
  8. Monitors PyPI publication

Workflow

Phase 1: Prepare Release

Run /prepare-release {version} which:

  • Updates CHANGELOG.md
  • Updates version in pyproject.toml, src/neo/init.py, .claude-plugin/plugin.json, plugins/neo/.codex-plugin/plugin.json
  • Refreshes the local editable install metadata and verifies importlib.metadata.version("neo-reasoner") == "{version}"
  • Builds distributions

Phase 2: Create Release Branch

git checkout -b release/v{version}

If branch already exists, check it out instead.

Phase 3: Commit Changes

git add CHANGELOG.md pyproject.toml src/neo/__init__.py .claude-plugin/plugin.json plugins/neo/.codex-plugin/plugin.json
git commit -m "chore: bump version to {version}"

Phase 4: Push and Create PR

git push origin release/v{version}
gh pr create --title "Release v{version}" --body "<changelog summary>"

CHECKPOINT: Command stops here. Report PR URL and next steps.

User must:

  1. Review the PR
  2. Verify changelog and version updates
  3. Verify local install metadata reports the release version: python -c "import importlib.metadata as m; print(m.version('neo-reasoner'))"
  4. Merge the PR

Then run: /ship-release {version} --continue

Phase 5: Create Tag (after PR merge)

git checkout main
git pull origin main
git tag v{version}
git push origin v{version}

Read the full file on GitHub · 127 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. 6d ago First seen · 127 lines · 16 tokens per session scan A 1f822808ee41

Subscribe to this mod's changes

source-command-ship-release is a skill published in the GitHub repository Parslee-ai/neo (16 stars, last pushed today), licensed Apache-2.0. It adds 16 tokens to every session and 844 once invoked, about $0.0001 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.