Borrowing it
Nothing to install: this file belongs to sevenschulte/agentic-harness. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/sevenschulte/agentic-harness/main/.claude/skills/ship-pr/SKILL.mdgit clone --depth 1 https://github.com/sevenschulte/agentic-harnessWrote 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/sevenschulte/agentic-harness/ship-pr)<a href="https://agentmods.dev/skills/sevenschulte/agentic-harness/ship-pr"><img src="https://agentmods.dev/badge/skills/sevenschulte/agentic-harness/ship-pr.svg" alt="Measured on agentmods" 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.00080 | $0.01450 |
| Opus 5 | $0.00040 | $0.00725 |
| Sonnet 5 | $0.00016 | $0.00290 |
| Haiku 4.5 | $0.00008 | $0.00145 |
Grade A, and why
ship-pr 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.
How it starts
The opening of the file, as written. The whole thing — 196 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Ship PR
You are about to ship the current branch as a pull request. The user has done the work; you are doing the handoff.
This skill is the worked example from the Harness Engineering article. It demonstrates the deterministic-where-possible / LLM-where-needed split: the script does the mechanical steps; you do the judgement steps (writing the PR body, deciding whether to ship at all).
Step 0 — Sanity checks
Before doing anything, verify:
# 1. We're in a git repo
git rev-parse --is-inside-work-tree
# 2. The current branch is not the base branch
CURRENT=$(git branch --show-current)
BASE="${1:-dev}" # Default base from $ARGUMENTS, fallback to "dev"
# If your default base is "main", change the fallback above.
[ "$CURRENT" != "$BASE" ] || { echo "Refusing to ship: current branch is the base branch."; exit 1; }
# 3. The branch has at least one commit ahead of base
AHEAD=$(git rev-list --count "$BASE".."$CURRENT")
[ "$AHEAD" -gt 0 ] || { echo "Refusing to ship: branch has 0 commits ahead of $BASE."; exit 1; }
# 4. gh CLI is installed and authenticated
gh auth status
If any check fails, stop and report. Do not try to fix the underlying issue without explicit confirmation.
Step 1 — Run the deterministic part
.claude/skills/ship-pr/scripts/run-tests.sh
That script formats code, runs the test suite, and exits non-zero on any failure. If it exits non-zero, stop. Read the output, report the failure, and ask the user what to do. Do not retry, do not disable tests, do not push anyway.
This is the line you will not cross: never use --no-verify, never skip a failing
test, never push known-broken code.
Step 2 — Stage and commit any uncommitted work
# Show the user what's about to be committed
git status --short
git diff --stat
If there are uncommitted changes:
- Read the diff (don't just stage everything blindly)
- Decide whether the changes belong in this PR or not. If they don't, ask
- If they do: stage explicit files (
git add <file1> <file2>), notgit add -A - Write a commit message following
.claude/rules/conventions.md(Conventional Commits format) - Commit
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 6d ago First seen · 196 lines · 80 tokens per session scan A 57d089357de5
ship-pr is a skill published in the GitHub repository sevenschulte/agentic-harness (2 stars, last pushed 4mo ago), licensed MIT. It adds 80 tokens to every session and 1,450 once invoked, about $0.0004 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
worktree-pr
Decide whether a task deserves its own git worktree and, if chosen, run it end to end: branch from the integration branch rather than the current tree, keep the main working copy untouched while the task runs, compare the result against the untouched baseline before declaring it done, and prepare it for a pull request…
intuitive-squash
Squash local GSD or agent-generated commit history into a clean, reviewable story while preserving important fixes. Use when the user asks to squash commits, clean git history, compress phase commits, prepare a branch before PR, compare aggressive vs moderate squash options, or preserve hotfix/security commits during…
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…
intuitive-port-worktree
Port changes from one git worktree or checkout into the default repository folder's current branch, then by default sync the result to the remote default branch when everything is clean. Use when the user asks to move, copy, transfer, transplant, cherry-pick, apply a patch, or port worktree changes into the…
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.
chinese-git-workflow
A Git workflow guide tailored to Chinese-hosted platforms such as Gitee, Coding.net, and GitLab, including their code-review and build systems.