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/blacksmithers/vaultforge/claude-mdgit clone --depth 1 https://github.com/blacksmithers/vaultforgeWrote 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/blacksmithers/vaultforge/claude-md)<a href="https://agentmods.dev/instructions/blacksmithers/vaultforge/claude-md"><img src="https://agentmods.dev/badge/instructions/blacksmithers/vaultforge/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.00894 | $0.00894 |
| Opus 5 | $0.00447 | $0.00447 |
| Sonnet 5 | $0.00179 | $0.00179 |
| Haiku 4.5 | $0.00089 | $0.00089 |
Grade A, and why
vaultforge 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 3d 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 — 53 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
vaultforge is a local MCP (Model Context Protocol) server for Obsidian vault operations. It communicates via stdio transport with Claude Desktop — no HTTP, no network.
Commands
npm install # Install dependencies
npm run build # Compile TypeScript (tsc) → dist/
npm run dev # Run directly via tsx (no build step)
npm start # Run compiled output (must build first)
There are no tests, linter, or formatter configured.
Architecture
src/index.ts — MCP server entry point. Registers 16 tools using @modelcontextprotocol/sdk. The 12 vault tools (read_note, write_note, edit_note, delete_note, append_note, list_dir, search_vault, search_content, recent_notes, vault_status, batch, daily_note) are defined inline. The 4 canvas tools are registered via imported functions from src/tools/canvas/.
src/vault-index.ts — VaultIndex class maintains three in-memory Maps:
files: relPath → FileEntry (size, mtime, extension)byName: lowercase filename stem → Set of relPaths (enables fuzzy resolution)byDir: directory → Set of child paths
Built by recursive readdir on startup, kept in sync via fs.watch (recursive). Ignores .obsidian, .git, .trash, node_modules, dotfiles.
src/tools/canvas/ — Canvas tools module (4 tools). Each tool file exports a register* function called from index.ts.
types.ts— TypeScript interfaces for JSON Canvas spec (nodes, edges, semantic input types)canvas-utils.ts— Shared utilities: ID generation, text height estimation, edge side calculation, fuzzy node matching, relative positioninglayout-engine.ts— dagre wrapper for DAG layout (Sugiyama algorithm). Converts dagre center-origin coordinates to canvas top-left origincanvas-create.ts—canvas_createtool: agent provides semantic graph (labels + edges), tool calculates all geometry via dagrecanvas-read.ts—canvas_readtool: reads.canvasJSON and returns semantic representation (labels, connections, stats)canvas-patch.ts—canvas_patchtool: add/remove/update nodes and edges with relative positioningcanvas-relayout.ts—canvas_relayouttool: re-layout existing canvas via dagre without changing content
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.
- 3d ago First seen · 53 lines · 894 tokens per session scan A ec4d4ab7b60e
vaultforge CLAUDE.md is an instructions file published in the GitHub repository blacksmithers/vaultforge (14 stars, last pushed 5mo ago), licensed MIT. It adds 894 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-30.
Other instructions, from other repositories
memtomem CLAUDE.md
Instructions for memtomem/memtomem, covering claude code notes — memtomem, commands, invariants when editing and prs.
seeklink AGENTS.md
Instructions for simonsysun/seeklink, covering project conventions for ai coding agents, core model, start of session, current focus and handoff (yyyy-mm-dd, agent, branch).
seeklink CLAUDE.md
Instructions for simonsysun/seeklink, covering claude code only and claude-triggered codex second review.
docsmint AGENTS.md
Instructions for HiAi-gg/docsmint, covering docsmint — agents.md, cheat-sheet — conventions, project documents, core and project-specific.
SoDam-WikiMate AGENTS.md
Instructions for sodam-ai/SoDam-WikiMate, covering wikimate 작업 규칙 (크로스툴 — claude code · codex · gemini 공용), 문체, 자동 동작 (자연어 트리거 — 강제 호출 불필요), 접근 규칙 (자동 감지 — 특정 도구에 한정하지 않음) and obsidian 규칙.
ken CLAUDE.md
Instructions for townsendmerino/ken, covering claude.md, what this is, repository ownership (read this first), commands and embedding parity & golden fixtures (now in aikit).