Borrowing it
Nothing to install: this file belongs to s-morgan-jeffries/omnifocus-mcp. 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/s-morgan-jeffries/omnifocus-mcp/main/.claude/skills/release/SKILL.mdgit clone --depth 1 https://github.com/s-morgan-jeffries/omnifocus-mcpWrote 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/s-morgan-jeffries/omnifocus-mcp/release)<a href="https://agentmods.dev/skills/s-morgan-jeffries/omnifocus-mcp/release"><img src="https://agentmods.dev/badge/skills/s-morgan-jeffries/omnifocus-mcp/release/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/s-morgan-jeffries/omnifocus-mcp/release"><img src="https://agentmods.dev/badge/skills/s-morgan-jeffries/omnifocus-mcp/release.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.00069 | $0.02142 |
| Opus 5 | $0.00034 | $0.01071 |
| Sonnet 5 | $0.00014 | $0.00428 |
| Haiku 4.5 | $0.00007 | $0.00214 |
Grade A, and why
release 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 10d 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 — 241 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release Workflow
This skill orchestrates a complete release. Follow each phase in order. Stop and report if any phase fails.
Phase 1: Milestone Check
Before creating a release branch, verify the milestone is ready.
-
Determine the target milestone. Look at open milestones:
gh api "repos/{owner}/{repo}/milestones?state=open&sort=due_on" --jq '.[] | "\(.number) \(.title) open:\(.open_issues) closed:\(.closed_issues)"' -
If there are multiple open milestones, ask the user which one to release.
-
If the target milestone has open issues, stop and ask the user:
- List the open issues:
gh api "repos/{owner}/{repo}/milestones/{number}/issues?state=open" --jq ...(or usegh issue list --milestone) - Present options: a. Move open issues to the next milestone (specify or create it) b. Pause to work on the open issues first c. Close the issues if they're no longer relevant
- Do NOT proceed until all issues in the target milestone are closed or moved.
- List the open issues:
-
Once the milestone is clean (0 open issues), proceed.
Phase 2: Version Number
- Read the current version from
pyproject.toml(authoritative source). - The milestone title tells you the target version (e.g.,
v0.7.3means version0.7.3). - Validate it's a valid semver bump from the current version.
- Present the version to the user for confirmation: "Release version X.Y.Z? (current: A.B.C)"
- Wait for confirmation before proceeding.
Phase 3: Create Release Branch
git checkout main
git pull origin main
git checkout -b release/vX.Y.Z
Phase 4: Bump Version
Update version in ALL of these files (pyproject.toml is authoritative):
- pyproject.toml -
version = "X.Y.Z" - src/omnifocus_mcp/init.py -
__version__ = "X.Y.Z" - CLAUDE.md (.claude/CLAUDE.md) -
**Version:** vX.Y.Zin the header line - README.md - All references to the old version (check with grep for old version string)
Use the Edit tool for each file. Be precise about what to change.
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.
- 10d ago First seen · 241 lines · 69 tokens per session scan A 99a90c7e2c8b
release is a skill published in the GitHub repository s-morgan-jeffries/omnifocus-mcp (7 stars, last pushed 4mo ago), licensed MIT. It adds 69 tokens to every session and 2,142 once invoked, about $0.0003 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
polish-docs-meta
Finalize documentation and project metadata for a ship-ready release. Use after implementation is complete, tests pass, and devcheck is clean. Safe to run at any stage — each step checks current state and only acts on what still needs work.
release-and-publish
Ship a release end-to-end across every registry this project targets (npm, MCP Registry). 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 complete — this skill is the post-wrapup…
publish-release
Releases a new McpOrchestrator version end to end — version bump PR, tag, and the automated deploy to GitHub Releases, NuGet, and the MCP Registry. Use when asked to release, publish, deploy, ship, or bump the version of McpOrchestrator.
release-notes
Writes user-facing release notes from a git commit range. Use when asked to draft release notes, a changelog entry, or "what's new" text for a release.
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, fast-forwards main when the release rode a release PR, creates the annotated tag on the commit main now points at, pushes commits and tags, then publishes…
git-wrapup
Land working-tree changes as logical commits — the work grouped by concern, topped by a release commit (version bump, changelog, regenerated artifacts). Verify, commit. Stops at "committed locally on main" — or, when the project releases through a release PR, at "release branch pushed, PR open". No tag, no push to…