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/coeusyk/personal-notes-assistant/claude-mdgit clone --depth 1 https://github.com/coeusyk/personal-notes-assistantWrote 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/coeusyk/personal-notes-assistant/claude-md)<a href="https://agentmods.dev/instructions/coeusyk/personal-notes-assistant/claude-md"><img src="https://agentmods.dev/badge/instructions/coeusyk/personal-notes-assistant/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.00900 | $0.00900 |
| Opus 5 | $0.00450 | $0.00450 |
| Sonnet 5 | $0.00180 | $0.00180 |
| Haiku 4.5 | $0.00090 | $0.00090 |
Grade A, and why
personal-notes-assistant 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 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 — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.
personal-notes-assistant
A FastMCP server that indexes an Obsidian vault into Milvus and answers questions over it via RAG (Ollama or OpenAI as the LLM backend).
Architecture
main.py— module-levelFastMCP("obsidian-rag")instance. Env vars are read and validated at import time (fails fast ifOBSIDIAN_VAULT_PATHis unset). Thelifespanasync context manager builds oneObsidianRAGServer, runs itsinitialize()(Milvus connect, embedding model load, file watcher start, initial full ingest), and yields it as{"rag": rag_server}— tools reach it viactx.lifespan_context["rag"].mcp_handlers.py— all MCP tools,@mcp.tool-decorated functions with type hints (FastMCP infers the JSON schema; don't hand-write one)._rag(ctx)is the one place that pulls the server out of the lifespan context.rag_server.py— all real logic: markdown/frontmatter parsing, chunking, Milvus CRUD, the watchdog file watcher, and the RAG query against the configured LLM client. This is where behavior changes belong; the tool layer should stay a thin pass-through.
Adding a tool
Add a function to register_tools() in mcp_handlers.py:
@mcp.tool
async def my_tool(ctx: Context, arg: str, limit: int = 5) -> str:
"""One-line description — shown to the LLM as the tool description."""
return await _rag(ctx).some_method(arg, limit)
No manual inputSchema, no dispatch if/elif — FastMCP derives both name and
schema from the function signature and docstring. Keep the tool body a
one-line delegation into ObsidianRAGServer; put actual logic in rag_server.py.
Milvus notes (non-obvious, bit people twice already)
collection.insert()must be followed bycollection.flush(). Without it, a note just ingested/updated is invisible tosearch_notesandget_note_content— this was a real bug, verified against a live instance.- Any user-controlled string (file path, filename) interpolated into a Milvus
boolean
exprfilter must go through_escape_milvus_string()first — a bare"in a filename otherwise breaks or manipulates the query. - The file watcher's
on_deletedhandler matters: without it, deleting a note from the vault leaves its chunks in Milvus forever.on_modified,on_created, andon_deletedall point at the same_handle— don't reintroduce three copies of the same body. - Using the ORM-style
pymilvusAPI (connections.connect,Collection,utility) — it's deprecated upstream in favor ofMilvusClient, but that's a separate migration, not folded into unrelated 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.
- 4d ago First seen · 72 lines · 900 tokens per session scan A 7cf1c2dec2d7
personal-notes-assistant CLAUDE.md is an instructions file published in the GitHub repository coeusyk/personal-notes-assistant (3 stars, last pushed 1mo ago), licensed MIT. It adds 900 tokens to every session, about $0.0045 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 instructions, from other repositories
swag-mcp CLAUDE.md
Claude Code instructions for jmagar/swag-mcp, covering swag mcp - claude memory reference, project overview, core architecture, key components and common development commands.
llm-wiki-agent CLAUDE.md
Claude Code instructions for SamurAIGPT/llm-wiki-agent, covering llm wiki agent — schema & workflow instructions, slash commands (claude code), directory layout, page format and ingest workflow.
MemOS CLAUDE.md
Claude Code instructions for MemTensor/MemOS, covering claude.md, claude code entry, sub-agents and project knowledge.
obsidian-gemini-helper AGENTS.md
AGENTS.md instructions for takeshy/obsidian-gemini-helper, covering agents.md, project overview, build commands, version bumping and architecture.
obsidian-gemini-helper CLAUDE.md
Claude Code instructions for takeshy/obsidian-gemini-helper, covering claude.md, project overview, build commands, version bumping and releasing.
MemOS AGENTS.md
AGENTS.md instructions for MemTensor/MemOS, covering agents.md, project overview, repository layout, command cheatsheet and core api.