obsidian-reminder CLAUDE.md

obsidian-reminder CLAUDE.md is an instructions file for coding agents from uphy/obsidian-reminder. It costs 2,021 tokens per session, scanned A, original, MIT.

Repository instructions for an Obsidian plugin that adds reminders to TODO lists. Obsidian is a note-taking application, and the plugin uses TypeScript, Svelte, and esbuild.

In plain words
What is it for?
Use it when developing, building, testing, linting, documenting, or preparing commits for the obsidian-reminder plugin.
Why use it?
It gives contributors the project’s language, architecture, preferred commands, and development checks in one place. This avoids using the wrong build, test, or documentation workflow.

Instructions file

Install

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.

agentmods
npx agentmods add instructions/uphy/obsidian-reminder/claude-md
Clone the repo
git clone --depth 1 https://github.com/uphy/obsidian-reminder

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 obsidian-reminder CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/uphy/obsidian-reminder/claude-md.svg)](https://agentmods.dev/instructions/uphy/obsidian-reminder/claude-md)
Your own site
<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>
Per session 2,021 This file is loaded in full into every session.
When invoked 2,021 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.02021 $0.02021
Opus 5 $0.01010 $0.01010
Sonnet 5 $0.00404 $0.00404
Haiku 4.5 $0.00202 $0.00202

Measured 5d ago against content hash feb3373448c7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

CLAUDE.md · 74 lines

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:fixmain: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 via DateTime/Time (model/time.ts), and the reminder-syntax parsers for Markdown (model/format/). Most jest unit tests live here, because it never imports the obsidian module 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.ts is 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 in src/plugin/ui/ mounts the Svelte components.

Read the full file on GitHub · 74 lines

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. 5d ago First seen · 74 lines · 2,021 tokens per session scan A feb3373448c7

Subscribe to this mod's changes

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.

Related

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.

YishenTu/claudian · 2,411 tokens

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.

RAIT-09/obsidian-agent-client · 4,581 tokens

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

RAIT-09/obsidian-agent-client · 712 tokens

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.

derek-larson14/obsidian-claude-sidebar · 2,409 tokens

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.

pssah4/vault-operator · 1,496 tokens

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.

logancyang/obsidian-copilot · 2,869 tokens