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/thewinci/mimirs/claude-mdgit clone --depth 1 https://github.com/TheWinci/mimirsWrote 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/thewinci/mimirs/claude-md)<a href="https://agentmods.dev/instructions/thewinci/mimirs/claude-md"><img src="https://agentmods.dev/badge/instructions/thewinci/mimirs/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.1 | $0.01614 | $0.01614 |
| Opus 5 | $0.00807 | $0.00807 |
| Sonnet 5 | $0.00323 | $0.00323 |
| Haiku 4.5 | $0.00161 | $0.00161 |
Grade A, and why
mimirs 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 — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.
use simple language
Using mimirs tools
This project has a local RAG index (mimirs). Use these MCP tools:
search: Discover which files are relevant to a topic. Returns file paths with snippet previews — use this when you need to know where something is. Supports optionalextensions,dirs, andexcludeDirsfilters to scope results (e.g. restrict to.tsfiles, or undersrc/). Query craft: describe the behavior or symptom in plain words ("where user sessions expire") — a short coherent phrase retrieves better than a bag of keywords. Don't pad the query with guessed internal symbol or file names; describe what you're looking for, not how you think it's implemented. (Measured: intent phrases beat keyword-stuffed queries even when the stuffing named the right files.)read_relevant: Get the actual content of relevant semantic chunks — individual functions, classes, or markdown sections — ranked by relevance. Results include exact line ranges (src/db.ts:42-67) so you can navigate directly to the edit location. Use this instead ofsearch+Readwhen you need the content itself. Two chunks from the same file can both appear (no file deduplication). Accepts the sameextensions/dirs/excludeDirsfilters assearch.project_map: When you need to understand how files relate to each other, generate a dependency graph. Usefocusto zoom into a specific file's neighborhood. This is faster than reading import statements across many files.search_conversation: Search past conversation history to recall previous decisions, discussions, and tool outputs. Use this before re-investigating something that may have been discussed in an earlier session. Returns short snippets — follow up withread_conversationto get the full text.read_conversation: Read the full verbatim text of past turns bysessionId+ turn index (or afrom/torange, orturn+context). The read counterpart tosearch_conversation: it locates the turn, this hydrates it. PassincludeToolOutput: trueto also get tool results (re-parses the raw transcript; slower). Defaults to the most recent session's tail when given no selector.create_checkpoint: Call this as your final step after completing any user-requested task, before responding to the user. Also call when hitting a blocker or changing direction mid-task. Include what was done, which files changed, and why. This is the only way future sessions know what happened.list_checkpoints/search_checkpoints: Review or search past checkpoints to understand project history and prior decisions.index_files: If you've created or modified files and want them searchable, re-index the project directory.search_analytics: Check what queries return no results or low-relevance results — this reveals documentation gaps.search_symbols: When you know a symbol name (function, class, type, etc.), find it directly by name instead of using semantic search.usages: Before changing a function or type, find all its call sites. Use this to understand the blast radius of a rename or API change. Faster and more reliable than semantic search for finding usages.git_context: At the start of a session (or any time you need orientation), call this to see what files have already been modified, recent commits, and which changed files are in the index. Avoids redundant searches and conflicting edits on already-modified files.search_commits: Semantically search git commit history — find why code was changed, when decisions were made, or what an author worked on. Supports filters for author, date range, and file path. Requires git history to be indexed first (mimirs history indexormimirs index git).file_history: Get the commit history for a specific file. Returns commits that touched it, sorted by date. Use this to understand how a file evolved.annotate: Call this immediately when you encounter a known bug, race condition, fragile code, non-obvious constraint, or workaround while reading code. Notes persist across sessions and surface as[NOTE]blocks inline inread_relevantresults automatically.get_annotations: Retrieve all notes for a file, or search semantically across all annotations to find relevant caveats before editing.delete_annotation: Remove an annotation that is no longer relevant — a fixed bug, a lifted constraint, or a note on deleted code. Useget_annotationsfirst to find the ID.depends_on: List all files that a given file imports — its dependencies.dependents: List all files that import a given file — reverse dependencies. Use before modifying a shared module to see who depends on it.impact: Symbol-level blast radius — the transitive callers of a function or method as a pruned call tree, plus the test files to run. More precise thandependents(file-level). Use before changing a signature or behavior. Passfileto disambiguate a name defined in several places.trace: Show how one symbol reaches another — the reachable call sub-graph fromfromtoto, shortest path highlighted ("how does X reach Y"). Resolution is static, so a dynamic-dispatch hop (callback, interface→impl, DI) can break the chain — it says so when it does.- Assessing blast radius / reviewing a diff: for a single function or
method,
impactreturns the transitive caller tree + tests to run in one call, andtraceshows how two symbols connect. Widen withdependents(file-level importers) andget_annotations(known caveats) when a change spans a whole module. For diff or PR review, pairgit_context(what changed) withimpact/usageson the changed symbols andsearch_checkpointsfor prior decisions. write_relevant: Before adding new code or docs, find the best insertion point — returns the most semantically appropriate file and anchor.connect_repo: Attach another repo's mimirs index for cross-repo queries (query-only — that repo's own server keeps it fresh). Then pass its path asdirectorytosearch/read_relevant/other read tools. Withpersist: true(+ optionalalias) the connection is saved to config, auto-attaches in future sessions, and the alias works asdirectory.wiki: Rebuild the project wiki. Start withwiki(command: "shape")and follow the prompts it returns — each step names the next.
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 · 100 lines · 1,614 tokens per session scan A 3802d3dc2cb9
mimirs CLAUDE.md is an instructions file published in the GitHub repository TheWinci/mimirs (29 stars, last pushed 21d ago), licensed Apache-2.0. It adds 1,614 tokens to every session, about $0.0081 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
serena AGENTS.md
AGENTS.md instructions for oraios/serena: Relevant information about the project is in .serena/memories. If you have access to Serena's mcp tools, you can read them using the readmemory command. Otherwise you can just read them using normal file reading tools.
memorix CLAUDE.md
Claude Code instructions for AVIDS2/memorix, covering memorix - agent instructions for claude code, using memorix memory tools, when to search memory, when to store memory and when to resolve memory.
memorix GEMINI.md
Gemini CLI instructions for AVIDS2/memorix, covering memorix - cross-agent memory rules, session start - bind project, then load context, during session - capture important context, architecture & decisions and bug fixes & problem solving.
BaseLayer AGENTS.md
AGENTS.md instructions for agulaya24/BaseLayer, covering agents.md for base layer, orientation (read first if you are new here), the four artifacts (thesis stack), what this repo is and setup.
BaseLayer CLAUDE.md
Claude Code instructions for agulaya24/BaseLayer, covering claude.md, project context, voice and prose constraints, commands an ai agent should know and mcp server quick-connect.
serena CLAUDE.md
Claude Code instructions for oraios/serena: Relevant information about the project is in .serena/memories. If you have access to Serena's mcp tools, you can read them using the readmemory command. Otherwise you can just read them using normal file reading tools.