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 agentmods add skills/rait-09/obsidian-agent-client/release-notesnpx skills add RAIT-09/obsidian-agent-client --skill release-notesgit clone --depth 1 https://github.com/RAIT-09/obsidian-agent-clientWrote 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/rait-09/obsidian-agent-client/release-notes)<a href="https://agentmods.dev/skills/rait-09/obsidian-agent-client/release-notes"><img src="https://agentmods.dev/badge/skills/rait-09/obsidian-agent-client/release-notes.svg" alt="Measured on agentmods" 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 | $0.00091 | $0.03828 |
| Opus 5 | $0.00046 | $0.01914 |
| Sonnet 5 | $0.00018 | $0.00766 |
| Haiku 4.5 | $0.00009 | $0.00383 |
Grade A, and why
release-notes 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 4d 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 — 332 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release Notes Generator
Generate a release note draft for this repository by analyzing git changes since the previous release. The output is a Markdown code block ready to paste into a GitHub release — do NOT create the release itself.
The version number is provided as an argument (e.g. /release-notes 0.11.0). If no version is given, ask for one before proceeding.
Step 1: Determine the previous release
The "previous release" depends on the version type being drafted:
- Stable version (no
-preview): Find the most recent stable tag, skipping all prereleases. This is because stable release notes cover everything since the last stable release — they aggregate all prerelease changes into one cohesive set of notes. - Prerelease (
-preview.N): Find the most recent tag of any kind (stable or prerelease). Prerelease notes only cover the incremental delta since the last tag.
Use git tag --sort=-v:refname to list tags and pick the right one. Confirm the previous tag to the user before continuing (e.g. "Previous release: v0.10.2 — generating notes for changes since then.").
Step 2: Gather information
Run these in parallel where possible:
- Commit log:
git log {prev_tag}..HEAD --oneline— the list of changes - Diff stat:
git diff --stat {prev_tag}..HEAD— which files changed - Actual diffs: Read the diffs of changed source files (
src/,styles.css,manifest.json, etc.) to understand what each change actually does at the code level. This is critical — commit messages alone are not enough to write accurate user-facing descriptions. - Issue numbers: Extract
#NNNreferences from commit messages. Note: commit messages often contain PR numbers (from merge commits), not the original issue numbers. Use whatever#NNNis in the commit message as-is — the author will verify and correct these during review. - New contributors: Compare authors before and after the previous tag:
Anyone in the second set but not the first is a new contributor. To find their GitHub username and PR number, usegit log --format='%aN' {prev_tag} | sort -u # existing contributors git log --format='%aN' {prev_tag}..HEAD | sort -u # contributors in this rangegit log --format='%aN <%aE>' {prev_tag}..HEADand cross-reference with#NNNin their commit messages. The GitHub username may differ from the git author name — check the commit on GitHub if needed. - Previous prerelease notes (stable releases only): If drafting a stable release and there were prereleases in the range, read their release notes with
gh release view {tag}. This helps identify bugs that were introduced and fixed within the prerelease cycle — those should be excluded from the stable release notes since they never affected stable users.
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.
- 4d ago First seen · 332 lines · 91 tokens per session scan A 67968bb87bef
release-notes is a skill published in the GitHub repository RAIT-09/obsidian-agent-client (2,388 stars, last pushed today), licensed Apache-2.0. It adds 91 tokens to every session and 3,828 once invoked, about $0.0005 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
obsidian
Comprehensive guidelines for Obsidian.md plugin development including ESLint rules from eslint-plugin-obsidianmd v0.4.1, TypeScript best practices, memory management, API usage (requestUrl vs fetch), UI/UX standards, popout window compatibility, community.obsidian.md submission process, and Scorecard optimization. Use…
wiki-ingest
Use when the user wants to ingest external sources into the vault — PDFs, markdown files, transcripts, Readwise exports, or any document. Triggers on "ingest", "process document", "import into vault", "distill this", "add to vault", or "extract knowledge from".
cross-linker
Use when the user wants to find and insert missing wikilinks across vault notes. Triggers on "cross-link", "find missing links", "weave links", "unlinked mentions", "add wikilinks", or "link notes together".
vault-lint
Use when the user wants a health audit of the vault — stale content, provenance drift, frontmatter compliance, or MOC coverage gaps. Triggers on "lint vault", "vault health", "check vault", "stale notes", "vault audit", "vault quality", or "check conventions".
entwurf-dev
Drive the current entwurf development surface for GLG: list garden citizens, open a fresh visible Pi or Claude Code sibling, correlate its nonce callback to the exact garden id, send/reply through entwurfv2, reopen a dormant pi citizen under its own garden id with entwurfresumecall, and walk the whole…
obsidian-companion
This skill enables you to act as an expert companion for the user's Obsidian Vault. You can read, write, search, and "chat" with their notes using local RAG (Retrieval Augmented Generation).