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.
npx agentmods add skills/benjaminthomas/spec-driven-dev/spec-shipnpx skills add benjaminthomas/spec-driven-dev --skill spec-shipgit clone --depth 1 https://github.com/benjaminthomas/spec-driven-devWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00119 | $0.01649 |
| Opus 5 | $0.00060 | $0.00825 |
| Sonnet 5 | $0.00024 | $0.00330 |
| Haiku 4.5 | $0.00012 | $0.00165 |
Grade A, and why
spec-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.
How it starts
The opening of the file, as written. The whole thing — 202 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Ship It
Push your work to GitHub and open a pull request — handling prerequisites, branch creation, pushing, and PR generation automatically.
This skill complements spec-checkpoint. Use spec-checkpoint to commit locally (with quality gates), then spec-ship to get the code to GitHub for review.
Instructions
Step 0: Prerequisites
Verify tooling before doing anything else.
-
GitHub CLI installed?
gh --versionIf the command fails (not found):
- Detect the platform and attempt to install:
- Windows:
winget install --id GitHub.cli - macOS:
brew install gh - Linux (Debian/Ubuntu): follow the official apt instructions
- Windows:
- If auto-install fails, tell the user what to install and stop.
- Detect the platform and attempt to install:
-
GitHub CLI authenticated?
gh auth statusIf not authenticated, tell the user:
GitHub CLI is not logged in. Please run this in the prompt: ! gh auth login Then re-run /spec-ship.Stop here — do not proceed until auth is confirmed.
-
Git remote exists?
git remote -vIf no remote named
originexists, stop and tell the user:No git remote found. Add one with: git remote add origin https://github.com/{user}/{repo}.git
Step 1: Detect the Environment
Run these commands to understand the current state:
git branch --show-current— get the current branch name- Detect the default branch:
gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name' git status --porcelain— check for uncommitted changes
If there are uncommitted changes, stop and tell the user:
You have uncommitted changes. Run /spec-checkpoint first to commit them, then /spec-ship to push.
Store the default branch name for use throughout the remaining steps.
Step 2: Check for Unpushed Commits
Determine if there are commits that haven't been pushed yet.
If on a feature branch with a remote tracking branch:
git log @{upstream}..HEAD --oneline
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.
- yesterday First seen · 202 lines · 119 tokens per session scan A 594016f91e3d
spec-ship is a skill published in the GitHub repository benjaminthomas/spec-driven-dev (1 stars, last pushed 28d ago), licensed MIT. It adds 119 tokens to every session and 1,649 once invoked, about $0.0006 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.
Other skills, from other repositories
academic-paper
12-agent academic paper writing pipeline. 11 modes (full/plan/outline/revision/revision-coach/abstract/lit-review/format-convert/citation-check/disclosure/rebuttal-audit). 6 paper types, 5 citation formats, bilingual abstracts, LaTeX/DOCX-via-Pandoc/PDF output. Style Calibration + Writing Quality Check + Anti-Patterns…
academic-paper-reviewer
Multi-perspective academic paper review with dynamic reviewer personas. Simulates 5 independent reviewers (EIC + 3 peer reviewers + Devil's Advocate) with field-specific expertise. Supports full review, re-review (verification), quick assessment, methodology focus, Socratic guided, and calibration modes. Triggers on…
agent-platform-alert-configuration
Configures best-practice alerting policies for Google Cloud Vertex AI / Agent Platform agents on Agent Runtime. Use when analyzing, writing, or deploying alerting policies to monitor agent latency, error rates, and quality metrics (response quality, tool use, hallucination). Also use when provisioning online monitors…
agent-platform-eval-flywheel
Measures and improves the quality of AI models and agents on Google Cloud using the Eval Quality Flywheel methodology. Use when evaluating an agent or model, building an eval dataset, picking or writing evaluation metrics, analyzing failures, comparing results before and after a fix, or when guidance is needed on…
agent-platform-inference
Connects to and performs inference with Google Cloud Agent Platform GenAI models, including First-Party Gemini models and Third-Party OpenMaaS models (Llama, DeepSeek, Qwen, etc.). Use when you need to generate code for calling Gemini or OpenMaaS models, authenticate with GenAI SDK, OpenAI SDK, or legacy Agent…
gemini-omni-flash-api
Use this skill for generative video editing, text-to-video, image-referenced video generation, and first-frame-to-video transition animations using the official google-genai SDK. Includes workflows for pre-processing/optimizing high-resolution or long source videos with ffmpeg, stripping audio for full sound…