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/ian-stetsenko/lore-protocol/claude-mdgit clone --depth 1 https://github.com/Ian-stetsenko/lore-protocolWhat 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.01159 | $0.01159 |
| Opus 5 | $0.00580 | $0.00580 |
| Sonnet 5 | $0.00232 | $0.00232 |
| Haiku 4.5 | $0.00116 | $0.00116 |
Grade A, and why
lore-protocol CLAUDE.md scanned grade A with 1 finding 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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
- Mock `IGitClient` for service tests -- never mock `child_process` directly. How it starts
The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Lore CLI
Lore CLI is a tool for the Lore protocol -- a convention for embedding structured decision context (constraints, rejected alternatives, directives, confidence, test notes, cross-references) into git commit messages via trailers. It provides query, write, and maintenance commands over git history.
Tech Stack
TypeScript, Node.js 18+, ESM modules, Commander.js, vitest, chalk, smol-toml, tsup (bundler).
Build & Test Commands
| Command | Description |
|---|---|
npm run build |
Build with tsup |
npm run typecheck |
Type-check with tsc --noEmit |
npm test |
Run all tests with vitest |
npm run test:watch |
Tests in watch mode |
npm run lint |
ESLint (src/ and tests/) |
npm run format |
Prettier (src/ and tests/) |
Run npm run build && npm run typecheck && npm test before submitting changes.
Architecture
Strict layered architecture. Dependencies flow inward/downward only.
main.ts — Composition root (the ONLY place concrete classes are instantiated)
commands/ — Thin CLI handlers; one file per command
helpers/ — Shared command logic (e.g., path-query pipeline)
formatters/ — IOutputFormatter implementations (text, JSON)
services/ — Business logic (parsing, querying, validation, staleness, commit building)
interfaces/ — Contracts/ports (IGitClient, IConfigLoader, IOutputFormatter, IPrompt)
types/ — Domain models, config schema, query/output shapes (pure data, zero logic)
util/ — Constants and error types
Dependency rules:
- Commands depend on services and interfaces; never the reverse.
- Services depend on interfaces and types; never on commands or formatters.
- Types and utilities are leaf nodes with no upstream dependencies.
- No file in
services/imports fromcommands/orformatters/.
Composition Root
src/main.ts is the composition root. It:
- Instantiates all concrete implementations.
- Loads configuration.
- Creates services with constructor injection.
- Creates the formatter factory (
getFormatter) that defers format selection to call time. - Registers all commands with their dependency bags.
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 · 105 lines · 1,159 tokens per session scan A ccf1fb38bc50
lore-protocol CLAUDE.md is an instructions file published in the GitHub repository Ian-stetsenko/lore-protocol (28 stars, last pushed 3mo ago), licensed MIT. It adds 1,159 tokens to every session, about $0.0058 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
daisyui code_generation_with_git.instructions.md
Instructions for saadeghi/daisyui, covering activation, initial setup, development loop, error handling and session end.
planning-with-files AGENTS.md
AGENTS.md instructions for OthmanAdi/planning-with-files, covering agents.md — planning-with-files agent reference card, commit rules, release checklist (12 steps), version bump scope and changelog format.
mq commit.instructions.md
Instructions for harehare/mq: Use the following format for commit messages.
stiletto CLAUDE.md
Instructions for benjamin-bader/stiletto, covering stiletto — contributor & agent guide, commit messages: conventional commits (required), breaking changes, examples and how releases work.
crow CLAUDE.md
Instructions for kh0pper/crow, covering claude.md, working with this repo, network exposure invariant, maintaining claude.md vs crow.md and where to find things.
cotect CLAUDE.md
Instructions for cotect-dev/cotect, covering project conventions and git commits.