Borrowing it
Nothing to install: this file belongs to sophonfinance-wq/finance-automation-portfolio. 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/sophonfinance-wq/finance-automation-portfolio/main/.claude/skills/ship/SKILL.mdgit clone --depth 1 https://github.com/sophonfinance-wq/finance-automation-portfolioWrote 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/sophonfinance-wq/finance-automation-portfolio/ship)<a href="https://agentmods.dev/skills/sophonfinance-wq/finance-automation-portfolio/ship"><img src="https://agentmods.dev/badge/skills/sophonfinance-wq/finance-automation-portfolio/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/sophonfinance-wq/finance-automation-portfolio/ship"><img src="https://agentmods.dev/badge/skills/sophonfinance-wq/finance-automation-portfolio/ship.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00036 | $0.00523 |
| Opus 5 | $0.00018 | $0.00262 |
| Sonnet 5 | $0.00007 | $0.00105 |
| Haiku 4.5 | $0.00004 | $0.00052 |
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 12d 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-It Workflow (this repo)
- Branch: work on the designated
claude/...branch. If its PR already merged, restart it:git fetch origin main && git checkout -B <branch> origin/main. - Test like CI (CI runs pytest per package, so a root pytest is NOT equivalent). Derive the
package list from
ci.ymlrather than hardcoding it — a second copy silently goes stale every time an engine lands, and then "test like CI" quietly stops testing like CI:for d in $(sed -n 's/.*for dir in \(.*\); do.*/\1/p' .github/workflows/ci.yml | head -1); do (cd "$d" && python -m pytest -q) || echo "FAILED: $d" doneSWEEP=1enables the ~1.65M-case grids (skip for normal ships). Install deps once:pip install -r requirements.txt. Also confirm the count gate before pushing — CI'stest-count.ymlhard-asserts it and only runs onmain, so a drift here fails after merge:python -m pytest --collect-only -q -m "not site_tooling" | tail -1 # must equal counts.json portfolio_curated - Commit: imperative subject, body explains the why; never mention model IDs in artifacts.
- Push:
git push -u origin <branch>(retry on network errors with backoff). - PR: draft, mirror
.github/pull_request_template.md(Summary + Review checklist — tests/CI, coverage, deterministic core, human-gated, no real data, docs). - CI: workflow
ci.yml, singletestjob, ~45-90s. Poll check runs; merge only on green. - Merge (only with the user's standing approval): undraft, merge-commit method, then confirm the merged webhook closed the watch. GitHub Pages redeploys docs/ automatically after merge.
- Report outcomes faithfully: verdicts, test counts, what was quarantined/skipped.
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.
- 12d ago First seen · 28 lines · 36 tokens per session scan A 8a751a390968
ship is a skill published in the GitHub repository sophonfinance-wq/finance-automation-portfolio (11 stars, last pushed 16d ago), licensed MIT. It adds 36 tokens to every session and 523 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-30.
Other skills, from other repositories
await-merge
Wait for a PR's checks, merge it with linear history, update the local base branch.
github-release-management
Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.
codew-release-qa-sweep
Use before claiming Codewhale release work is done: run the full gate sweep and list the manual QA targets.
taiyi-integration
A project workflow skill for closing a TaiyiForge change and recording it in a CHANGELOG.md file. It checks review results, tests, and the state of the working tree before archiving the change.
release
CONTRIBUTOR TOOL - Cut a plugin release: bump plugin.json version, finalize CHANGELOG, update README if needed, gate on make ci, commit, tag vX.Y.Z, and create the GitHub release. Use when shipping a new plugin version. NOT distributed.
safe-extraction
Apply when extracting code from a large monolith file into submodules. Covers barrel re-exports, internals DI seam proxy patterns, CI invariant allowlist updates, and cross-file test verification. Prevents CI failures, broken imports, and test regressions from code extraction.