Borrowing it
Nothing to install: this file belongs to psenger/obsidian-markdown-lint-mcp-server. 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/psenger/obsidian-markdown-lint-mcp-server/main/.claude/skills/release/SKILL.mdgit clone --depth 1 https://github.com/psenger/obsidian-markdown-lint-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/psenger/obsidian-markdown-lint-mcp-server/release)<a href="https://agentmods.dev/skills/psenger/obsidian-markdown-lint-mcp-server/release"><img src="https://agentmods.dev/badge/skills/psenger/obsidian-markdown-lint-mcp-server/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/psenger/obsidian-markdown-lint-mcp-server/release"><img src="https://agentmods.dev/badge/skills/psenger/obsidian-markdown-lint-mcp-server/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.00150 | $0.01983 |
| Opus 5 | $0.00075 | $0.00992 |
| Sonnet 5 | $0.00030 | $0.00397 |
| Haiku 4.5 | $0.00015 | $0.00198 |
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 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.
How it starts
The opening of the file, as written. The whole thing — 215 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release
Ships completed work. The skill detects context and runs the right phase:
- On a feature branch with committed work → WRAP UP phase
- On main after a merge → CUT RELEASE phase
For all message formatting, follow the conventions skill.
Step 0: Auth and identity (always)
Check for a GitHub MCP server in available tools. If none:
gh auth status
Stop if neither is available: "I need the GitHub MCP server or gh CLI authenticated. Run gh auth login."
Confirm identity with mcp__github__get_me, otherwise:
gh api user --jq '"@\(.login): \(.name)"'
Show the result and ask: "I'll be acting as @username, is that right?" Wait for confirmation.
WRAP UP phase
Triggered when on any non-main branch (feature/, fix/, chore/, refactor/, test/) with a clean working tree.
Step 1: Verify state
git branch --show-current # must not be main
git status --porcelain # must be empty; all work committed
If the tree is dirty, stop: "You have uncommitted changes. Commit or stash them first."
Step 2: Run the gates
Confirm the change is green before opening a PR (CONTRIBUTING requires it):
npm run build
npm test
npm run eval
npm run snapshot needs a real Chromium; run it if one is available, otherwise note it as not run. If any gate fails, stop and report.
Step 3: Detect what changed
git diff main...HEAD --name-only
Determine:
- New tool or capability (changes in
src/tools/,src/create-server.ts, or a new file undersrc/) →### Added,feat - Changed behavior of an existing tool →
### Changed - Bug fix →
### Fixed,fix - Security fix (dependency or audit) →
### Security - Docs or tooling only → may not need a changelog entry; use judgement
Derive the issue number from the branch name (e.g. feature/14-mermaid-theme-option → #14). If none, ask the user.
Step 4: Update admin files
CHANGELOG.md: add a bullet to ## [Unreleased] under the correct subsection, format (see conventions):
- **scope**: what changed and why. ([#N](issue-url))
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.
- 9d ago First seen · 215 lines · 150 tokens per session scan A 33d55ec37b8f
release is a skill published in the GitHub repository psenger/obsidian-markdown-lint-mcp-server (2 stars, last pushed yesterday), licensed MIT. It adds 150 tokens to every session and 1,983 once invoked, about $0.0007 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
re0-release
Walk a pending change through this repo's shipping and releasing checklist end to end, then tag and publish once confirmed. User-invoked: run it when you've decided to ship.
release-version
Steps to cut a VNote version release (e.g. v4.3.0) — bump the version with scripts/updateversion.py, refresh and fill zhCN/ja translations via lupdate, write the changes.md changelog, and trigger the CI [Release] build. Use when asked to "release", "cut a release", "bump the version", or "prepare vX.Y.Z".
create-release
Create a versioned GitHub release with changelog.
publish-plugins
(project) Use when editing any file under skills/ or plugins/ to bump the plugin version and check the manifests.
release
Release a validated Open Harness commit by pushing it to main or master, then monitor the automatic SemVer/GHCR/GitHub Release workflow. TRIGGER when: asked to release, version, ship, cut a release, or verify release artifacts.
releasing
Use before any release work: the trunk release model, the unstable edge channel, the prepare/release/promotion machinery, release-notes pages, the pre-release artifact smoke test, and, when the plugin channel is enabled, the Claude Code plugin channel.