personal-notes-assistant CLAUDE.md

personal-notes-assistant CLAUDE.md is an instructions file for coding agents from coeusyk/personal-notes-assistant. It costs 900 tokens per session, scanned A, original, MIT.

Project instructions for a server that indexes an Obsidian vault, a folder of Markdown notes, into Milvus, a vector database. It uses retrieval-augmented generation to search those notes and answer questions with a selected language model.

In plain words
What is it for?
Use it to ingest notes, keep an index updated as files change, query a personal knowledge base, configure the language-model backend, or add a server tool.
Why use it?
It explains where indexing, file watching, database access, and question answering belong in the code. This helps developers add tools without mixing the server’s responsibilities.

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/coeusyk/personal-notes-assistant/claude-md
Clone the repo
git clone --depth 1 https://github.com/coeusyk/personal-notes-assistant

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 personal-notes-assistant CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/coeusyk/personal-notes-assistant/claude-md.svg)](https://agentmods.dev/instructions/coeusyk/personal-notes-assistant/claude-md)
Your own site
<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>
Per session 900 This file is loaded in full into every session.
When invoked 900 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.00900 $0.00900
Opus 5 $0.00450 $0.00450
Sonnet 5 $0.00180 $0.00180
Haiku 4.5 $0.00090 $0.00090

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

Security

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.

CLAUDE.md · 72 lines

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-level FastMCP("obsidian-rag") instance. Env vars are read and validated at import time (fails fast if OBSIDIAN_VAULT_PATH is unset). The lifespan async context manager builds one ObsidianRAGServer, runs its initialize() (Milvus connect, embedding model load, file watcher start, initial full ingest), and yields it as {"rag": rag_server} — tools reach it via ctx.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 by collection.flush(). Without it, a note just ingested/updated is invisible to search_notes and get_note_content — this was a real bug, verified against a live instance.
  • Any user-controlled string (file path, filename) interpolated into a Milvus boolean expr filter must go through _escape_milvus_string() first — a bare " in a filename otherwise breaks or manipulates the query.
  • The file watcher's on_deleted handler matters: without it, deleting a note from the vault leaves its chunks in Milvus forever. on_modified, on_created, and on_deleted all point at the same _handle — don't reintroduce three copies of the same body.
  • Using the ORM-style pymilvus API (connections.connect, Collection, utility) — it's deprecated upstream in favor of MilvusClient, but that's a separate migration, not folded into unrelated changes.

Read the full file on GitHub · 72 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. 4d ago First seen · 72 lines · 900 tokens per session scan A 7cf1c2dec2d7

Subscribe to this mod's changes

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.