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 instructions/uphy/obsidian-reminder/claude-mdgit clone --depth 1 https://github.com/uphy/obsidian-reminderWrote 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/instructions/uphy/obsidian-reminder/claude-md)<a href="https://agentmods.dev/instructions/uphy/obsidian-reminder/claude-md"><img src="https://agentmods.dev/badge/instructions/uphy/obsidian-reminder/claude-md.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.02021 | $0.02021 |
| Opus 5 | $0.01010 | $0.01010 |
| Sonnet 5 | $0.00404 | $0.00404 |
| Haiku 4.5 | $0.00202 | $0.00202 |
Grade A, and why
obsidian-reminder CLAUDE.md 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 5d 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 — 74 lines — stays where its author put it; the contents beside it link to each section on GitHub.
obsidian-reminder
A plugin that adds reminder functionality to Obsidian's TODO lists. Built with TypeScript + Svelte 4, bundled with esbuild.
Language
Write all repository artifacts — code comments, commit messages, documentation — in English.
Commands
Prefer mise tasks (they just wrap npm scripts under the hood).
| mise | Underlying command (npm script) | Purpose |
|---|---|---|
mise run main:init |
npm install |
Install dependencies |
mise run main:build |
npm run build (node esbuild.config.mjs production) |
Run a production-equivalent build once |
mise run dev |
npm run dev (node esbuild.config.mjs watch) |
Start a persistent development watch build |
mise run main:test |
npm run test (jest) |
Run the full test suite |
mise run main:lint:fix |
npm run lint:fix |
eslint --fix + tsc --noEmit + svelte-check |
mise run pre-commit |
main:lint:fix → main:test |
Pre-commit checks |
mise run docs |
npm run dev in docs/ |
Run the documentation site (VuePress) locally |
esbuild.config.mjs uses esbuild's context API: with no arguments it runs a development build once and exits, with watch the process stays resident and automatically rebuilds on every file change, and with production it runs a production-equivalent build (minified, no sourcemap) once and exits.
To run a single test, call jest directly.
npx jest src/model/format/reminder-default.test.ts
npx jest -t "parse - link dates to daily notes"
Architecture
The entry point is src/main.ts (ReminderPlugin). src/ is organized into three layers.
src/model/— Domain logic with no dependency on the Obsidian API:Reminder/Reminders(model/reminder.ts), date/time handling viaDateTime/Time(model/time.ts), and the reminder-syntax parsers for Markdown (model/format/). Most jest unit tests live here, because it never imports theobsidianmodule and so needs nothing else in place.src/plugin/— The plugin body, which depends on the Obsidian API. Bundles file watching, notifications, settings, and command registration (plugin/index.tsis the export entry point).src/ui/— Svelte components (ui/*.svelte) and the TS that supports them (e.g. calendar calculations). The Obsidian Modal/View code insrc/plugin/ui/mounts the Svelte components.
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.
- 5d ago First seen · 74 lines · 2,021 tokens per session scan A feb3373448c7
obsidian-reminder CLAUDE.md is an instructions file published in the GitHub repository uphy/obsidian-reminder (657 stars, last pushed 3d ago), licensed MIT. It adds 2,021 tokens to every session, about $0.0101 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 instructions, from other repositories
claudian AGENTS.md
AGENTS.md instructions for YishenTu/claudian, covering agents.md, project, scope guides, agents.md maintenance and commands.
obsidian-agent-client AGENTS.md
AGENTS.md instructions for RAIT-09/obsidian-agent-client, covering agent client plugin - llm developer guide, architecture, data flow, acp event flow (single path) and permission flow.
obsidian-agent-client copilot-instructions.md
Copilot instructions for RAIT-09/obsidian-agent-client, covering github copilot instructions (obsidian-agent-client), big picture, key directories / “where to change things”, architectural rules (project-specific) and sessionupdate / tool-call update flow (critical).
obsidian-claude-sidebar CLAUDE.md
Claude Code instructions for derek-larson14/obsidian-claude-sidebar, covering claude sidebar - agent guide, what this plugin does, two things you can help the user do, step 1: diagnose and step 2a: file a bug report.
vault-operator AGENTS.md
AGENTS.md instructions for pssah4/vault-operator, covering vault operator, projekt-regeln, navigation, zuerst lesen, projekt, tech stack and build und deploy.
obsidian-copilot AGENTS.md
AGENTS.md instructions for logancyang/obsidian-copilot, covering agents.md, commands, core principles (apply to every change), task-specific guides and important notes.