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 skills add HumanDealer/vibeproof --skill shipgit clone --depth 1 https://github.com/HumanDealer/vibeproofWrote 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.
[](https://agentmods.dev/skills/humandealer/vibeproof/ship)<a href="https://agentmods.dev/skills/humandealer/vibeproof/ship"><img src="https://agentmods.dev/badge/skills/humandealer/vibeproof/ship/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/humandealer/vibeproof/ship"><img src="https://agentmods.dev/badge/skills/humandealer/vibeproof/ship.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00032 | $0.00538 |
| Opus 5 | $0.00016 | $0.00269 |
| Sonnet 5 | $0.00006 | $0.00108 |
| Haiku 4.5 | $0.00003 | $0.00054 |
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 9d 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.
What it actually says
Ship
Take a finished change from working tree to an open PR. This skill runs the
real gate — vibeproof check — and stops if it returns BLOCKED. It does not
"enforce" by willpower: the deny-list (templates/settings.deny.json) is what
physically blocks a push to main or a --no-verify. This skill is the happy
path that respects those gates.
When to use
The human says "ship it", "deploy this", "open a PR", "push it up", or the implementation is done and the next step is to land it.
Steps
-
Confirm you're not on a protected branch.
git branch --show-currentIf
main/master/production→ create a feature branch now:git checkout -b <type>/<scope>-<desc>(see rules/git-workflow.md). -
Run the gate (rules/code-quality.md):
vibeproof check # lint · types · tests · secret scan, one verdict lineProceed only on
READY. OnBLOCKED, fix the ✗ lines — do not proceed on red. Paste the verdict line as your evidence; "looks good" is not evidence. -
Review the diff yourself.
git diffNo secrets, no debug prints, no commented-out code, no stray files.
-
Commit atomically. One logical change per commit, message in
<type>(<scope>): <summary>format (rules/git-workflow.md). -
Push the branch.
git push -u origin <branch> -
Open the PR with a Summary (what + why) and a Test plan (how you verified). Use the repo's PR template if present.
-
Wait for CI to be green. A failure → read the log, fix the root cause, push the fix. Never merge red.
-
Merge (squash/rebase per convention), delete the branch, return to a fresh
main.
Never
- Push straight to main.
--no-verifyor[skip ci].- Claim shipped before CI is green.
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.
- 9d ago First seen · 63 lines · 32 tokens per session scan A 4c4cbc2c2b01
ship is a skill published in the GitHub repository HumanDealer/vibeproof (2 stars, last pushed 3mo ago), licensed MIT. It adds 32 tokens to every session and 538 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.
Other skills, from other repositories
git-workflow-and-versioning
Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, splitting uncommitted work in a messy working tree into clean atomic commits, opening or reviewing a pull request (PR), pushing to a remote, or when you need to organize work across multiple…
git-github-flow
Use for branch prep, clean commits, PR descriptions, GitHub issue triage, changelogs, release notes, review response, merge readiness, or publishing a branch safely.
infrastructure-publishing
Skill for the publishing infrastructure module providing academic publishing workflows including BibTeX CLI citation generation, APA/MLA citation helper functions, DOI management, Zenodo publication, arXiv submission preparation, GitHub releases, PyPI and TestPyPI package distribution, static-site deployment to GitHub…
template-publish
Publishing scripts for DOI-bearing project releases, optional mirror uploads, PyPI release validation, post-publish verification, and publication export. Use with docs/guides/publication-runbook.md for standalone GitHub + Zenodo release workflows.
handoff
Ship completed work: verify locally, commit related changes, push, create or update the PR, watch CI/reviews, and fix until merge-ready or escalated. Use for "ship it", "create PR", "handoff", or finished code needing delivery.
git-workflow
Helps with git workflows including conventional commit messages, branching strategies, merge conflict resolution, and changelog generation. Triggers on: "git commit message", "branching strategy", "resolve conflict", "generate changelog".