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/zircote/git-notes-memory/claude-mdgit clone --depth 1 https://github.com/zircote/git-notes-memoryWhat 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.03162 | $0.03162 |
| Opus 5 | $0.01581 | $0.01581 |
| Sonnet 5 | $0.00632 | $0.00632 |
| Haiku 4.5 | $0.00316 | $0.00316 |
Grade A, and why
git-notes-memory 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 2d 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 — 313 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
git-notes-memory is a Python library and Claude Code plugin that provides git-native, semantically-searchable memory storage. Memories are stored as git notes with YAML front matter and indexed in SQLite with sqlite-vec for vector similarity search.
Development Commands
# Install with dev dependencies
uv sync
# Run all tests
make test
# Run tests with coverage (80% minimum required)
make coverage
# Run a specific test file
uv run pytest tests/test_capture.py -v
# Run a single test
uv run pytest tests/test_capture.py::TestCaptureService::test_capture_basic -v
# Skip slow tests
uv run pytest -m "not slow"
# Run all quality checks (format, lint, typecheck, security, tests)
make quality
# Individual quality checks
make format # Auto-fix formatting
make lint # Ruff linting
make typecheck # mypy strict mode
make security # bandit security scan
# Version management
make version # Show current version
make bump # Bump patch version (0.3.1 → 0.3.2)
make bump-minor # Bump minor version (0.3.1 → 0.4.0)
make bump-major # Bump major version (0.3.1 → 1.0.0)
make bump-dry # Preview version bump changes
Architecture
Service Layer Pattern
The codebase uses a singleton service factory pattern with lazy initialization:
__init__.py # Lazy imports via __getattr__ to avoid loading embedding model at import
└── get_capture_service() → CaptureService
└── get_recall_service() → RecallService
└── get_sync_service() → SyncService
Services are exposed through factory functions (get_*_service()) that return singleton instances. Internal modules use get_default_service() naming.
Core Data Flow
Capture:
CaptureService.capture()
→ validate (namespace, summary ≤100 chars, content ≤100KB)
→ serialize_note() (YAML front matter + body)
→ GitOps.append_note() (atomic append to refs/notes/mem/{namespace})
→ EmbeddingService.embed() (sentence-transformers, graceful degradation)
→ IndexService.insert() (SQLite + sqlite-vec)
Recall:
RecallService.search()
→ EmbeddingService.embed(query)
→ IndexService.search_vector() (KNN via sqlite-vec)
→ Memory objects with distance scores
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.
- 2d ago First seen · 313 lines · 3,162 tokens per session scan A e2268ce84a1a
git-notes-memory CLAUDE.md is an instructions file published in the GitHub repository zircote/git-notes-memory (4 stars, last pushed 8mo ago), licensed MIT. It adds 3,162 tokens to every session, about $0.0158 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
diaphora-mcp AGENTS.md
Instructions for xTeardx/diaphora-mcp, covering diaphora mcp — agent instructions, mission, source map, data contract and export rules.
diaphora-mcp CLAUDE.md
Instructions for xTeardx/diaphora-mcp, covering diaphora mcp — claude code compatibility notes, project role, source map, non-negotiable data rules and large database defaults.
mindkeg-mcp CLAUDE.md
Instructions for carloluisito/mindkeg-mcp, covering mind keg mcp — development guide for ai agents, project overview, repository layout, code conventions and typescript.
mindkeg-mcp AGENTS.md
Instructions for carloluisito/mindkeg-mcp, covering agents, project agent registry, personal agent registry, architecture-design and bug-fixer.
cocoindex-claude-code CLAUDE.md
Instructions for pkmdev-sec/cocoindex-claude-code, covering cocoindex claude code, quick commands, search documents, index documents and start server.
claude-plugin-marketplace CLAUDE.md
Claude Code instructions for barnburner121/claude-plugin-marketplace, covering claudeplugins - plugin factory, quick start, project structure, monetization strategy and environment variables needed.