obsidian-markdown-lint-mcp-server: Skill for Claude Code

.claude/skills/release/SKILL.md

release is a skill for Claude Code from psenger/obsidian-markdown-lint-mcp-server. It costs 150 tokens per session (1,983 once invoked), scanned A, original, MIT.

A shipping guide for the obsidian-markdown-lint-mcp-server repository. It covers wrapping up branch work and preparing a release after changes are merged.

In plain words
What is it for?
Use it to run release checks, update the changelog and README, commit and push changes, open a draft pull request, or cut a release.
Why use it?
It organizes final checks and release steps so completed work is tested, documented, versioned, and submitted correctly.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is psenger/obsidian-markdown-lint-mcp-server's own configuration. It tells Claude Code how to work on obsidian-markdown-lint-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything obsidian-markdown-lint-mcp-server configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/psenger/obsidian-markdown-lint-mcp-server/main/.claude/skills/release/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/psenger/obsidian-markdown-lint-mcp-server

Made for: Claude Code.

Wrote 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.

agentmods badge for release

README.md
[![agentmods](https://agentmods.dev/badge/skills/psenger/obsidian-markdown-lint-mcp-server/release/github.svg)](https://agentmods.dev/skills/psenger/obsidian-markdown-lint-mcp-server/release)
Your own site
<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.

agentmods 80×15 button for release

Your own site · 80×15
<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>
Per session 150 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,983 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 9d ago against content hash 33d55ec37b8f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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.

.claude/skills/release/SKILL.md · 215 lines

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 under src/) → ### 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))

Read the full file on GitHub · 215 lines

Files

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.

Changes

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.

  1. 9d ago First seen · 215 lines · 150 tokens per session scan A 33d55ec37b8f

Subscribe to this mod's changes

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.