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 cyanheads/stackexchange-mcp-server --skill git-wrapupgit clone --depth 1 https://github.com/cyanheads/stackexchange-mcp-serverWrote 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/cyanheads/stackexchange-mcp-server/git-wrapup)<a href="https://agentmods.dev/skills/cyanheads/stackexchange-mcp-server/git-wrapup"><img src="https://agentmods.dev/badge/skills/cyanheads/stackexchange-mcp-server/git-wrapup/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/cyanheads/stackexchange-mcp-server/git-wrapup"><img src="https://agentmods.dev/badge/skills/cyanheads/stackexchange-mcp-server/git-wrapup.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.00104 | $0.04661 |
| Opus 5 | $0.00052 | $0.02330 |
| Sonnet 5 | $0.00021 | $0.00932 |
| Haiku 4.5 | $0.00010 | $0.00466 |
Grade A, and why
git-wrapup 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 today.
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.
This is a copy
100% identical to git-wrapup — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 285 lines — stays where its author put it; the contents beside it link to each section on GitHub.
When to use
Working-tree or staged changes are ready to ship as a new version. This skill lands them as a stack of logical commits — the work grouped by concern, topped by a release commit (version + changelog + tree). It does NOT tag, push to main, or publish — release-and-publish does all three.
Common triggers:
- Feature work, bug fixes, or dependency updates are done and tested
- A maintenance or polish pass left changes in the working tree
- An orchestrator says "wrapup this project"
Release PR mode
A project can route every release through a pull request — one PR per version, for the audit trail and a stable review target. The mode is declared in the project's CLAUDE.md/AGENTS.md or in the caller's brief; when neither says anything, there is no release PR and the stack lands on main directly.
| Mode | Wrapup ends at | Then |
|---|---|---|
| (none — default) | commit stack on main, tree clean |
release-and-publish tags HEAD and ships |
| gated | commit stack on release/<version>, branch pushed, PR open |
a review pass on the PR (release-pr-review skill), then a separate release-and-publish run fast-forwards main, tags, and ships |
| straight-through | same as gated | the same agent continues straight into release-and-publish |
The branch is created at wrapup time, never before: work happens on main until the version is known, then the uncommitted tree moves to release/<version> in one step (step 7). The commit stack, the release commit, and the tag format are identical in every mode — the PR adds an artifact around them, it does not change them.
Pre-wrapup gate checklist
Every item must be true before starting wrapup. Committing means releasing — a commit only happens when the work is ready to ship, not just "the edits are done." Each item is a goal to verify.
- Changes exist — uncommitted files or commits since the last tag
- Work is complete — no half-finished features, no "I'll add the test later," no TODO placeholders. The diff represents a shippable unit.
- Code simplified — if the diff spans more than ~50 changed lines or touches 3+ source files, the
code-simplifierskill has been run across the changes -
bun run devcheckpasses — typecheck + lint clean -
bun run rebuildsucceeds — full clean build from scratch - All tests pass —
bun run test:all(orbun run test), plusbun run test:packagewhere the project defines one: it guards the public-export manifest and is not part oftest:all. New tests and regression tests added as needed for the changes being shipped. - Fixes verified — bug fixes validated, generally via
bun run rebuildand field-testing. Not just written — confirmed to resolve the described behavior. - No known regressions — the changes don't break existing functionality
- GH issues updated — issues addressed by this work commented with what landed and any follow-ups needed. Concise. Backlinked as needed.
- Docs updated — surgical updates to existing docs as needed. New docs for new features. No large rewrites for documentation that's still accurate.
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.
- today Changed · +38 lines · +22 tokens per session d9fdd25f226d
- 10d ago First seen · 247 lines · 82 tokens per session scan A eadc76d1a313
git-wrapup is a skill published in the GitHub repository cyanheads/stackexchange-mcp-server (2 stars, last pushed today), licensed Apache-2.0. It adds 104 tokens to every session and 4,661 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to git-wrapup, differing in 0 lines, and is treated as a copy.
Other skills, from other repositories
release-and-publish
Ship a release end-to-end across every registry the project targets (npm, MCP Registry, GitHub Releases for .mcpb bundles, GHCR). Runs the final verification gate, pushes commits and tags, then publishes to each applicable destination. Assumes git wrapup (version bumps, changelog, commit, annotated tag) is already…
release-and-publish
Ship a release end-to-end across every registry the project targets (npm, MCP Registry, GitHub Releases for .mcpb bundles, GHCR). Runs the final verification gate, pushes commits and tags, then publishes to each applicable destination. Assumes git wrapup (version bumps, changelog, commit, annotated tag) is already…
git-wrapup
Land working-tree changes as logical commits — the work grouped by concern, topped by a release commit (version bump, changelog, regenerated artifacts) and an annotated tag. Verify, commit, tag. Stops at "committed and tagged locally" — no push, no publish. The release-and-publish skill picks up from here. Distilled…
git-wrapup
Land working-tree changes as logical commits — the work grouped by concern, topped by a release commit (version bump, changelog, regenerated artifacts) and an annotated tag. Verify, commit, tag. Stops at "committed and tagged locally" — no push, no publish. The release-and-publish skill picks up from here. Distilled…
release-and-publish
Ship a release end-to-end across every registry the project targets (npm, MCP Registry, GitHub Releases for .mcpb bundles, GHCR). Runs the final verification gate, pushes commits and tags, then publishes to each applicable destination. Assumes git wrapup (version bumps, changelog, commit, annotated tag) is already…
git-wrapup
Land working-tree changes as logical commits — the work grouped by concern, topped by a release commit (version bump, changelog, regenerated artifacts) and an annotated tag. Verify, commit, tag. Stops at "committed and tagged locally" — no push, no publish. The release-and-publish skill picks up from here. Distilled…