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/solidkeyab/logan/claude-mdgit clone --depth 1 https://github.com/SolidKeyAB/loganWhat 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.02523 | $0.02523 |
| Opus 5 | $0.01262 | $0.01262 |
| Sonnet 5 | $0.00505 | $0.00505 |
| Haiku 4.5 | $0.00252 | $0.00252 |
Grade A, and why
logan 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 — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.
LOGAN — Log Analyzer
LOGAN is an Electron-based log analysis tool with an integrated AI agent interface.
Agent Communication
You can communicate with the LOGAN user through its built-in Chat panel. The MCP server is configured in .mcp.json at the project root.
Chat Loop Pattern
Use this pattern for interactive conversations with the LOGAN user:
1. logan_send_message("Hello! How can I help?")
2. response = logan_wait_for_message(timeout=120)
3. Process response, reply with logan_send_message(...)
4. Repeat from step 2 until user says goodbye
Session Memory — persist context across reconnects
LOGAN gives each open log a small per-file agent-memory scratchpad (stored at .logan/<file>.agent-memory.json, surfaced in the Chat panel's memory bar). It is NOT filled automatically — it stays empty until you write to it. Use it so you can resume naturally if the session drops and reconnects.
- At the start of a session (and after any reconnect), call
logan_memory_readto recall what a prior session established. - After each significant finding or task, call
logan_memory_write(content=...)with a brief note of what the user asked and what you found. Each write replaces the previous note — write the full running summary, not just a delta. - Memory is per-file: it's keyed to the currently open log, so a note written while one file is open won't appear when a different file is open. Writing with no file open is a no-op.
If the memory bar "keeps empty," it's almost always because no agent ever called
logan_memory_write— the plumbing round-trips fine, it just isn't automatic.
Surfacing Findings — CRITICAL RULE
Whenever you identify a specific critical point, anomaly, or root cause in the log, you MUST call logan_report_finding to pin it in the viewer. Do NOT just describe findings in chat text — call logan_report_finding first, then follow up with explanation. This creates a visible annotation in the log viewer so the user can click to navigate directly to the issue.
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 · 122 lines · 2,523 tokens per session scan A 0a519ca90c45
logan CLAUDE.md is an instructions file published in the GitHub repository SolidKeyAB/logan (4 stars, last pushed 5d ago), licensed MIT. It adds 2,523 tokens to every session, about $0.0126 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
outline-apps AGENTS.md
AGENTS.md instructions for OutlineFoundation/outline-apps, covering welcome to the outline monorepo!, repository structure, the npm run action command, common actions and other useful commands.
outline-apps CLAUDE.md
Claude Code instructions for OutlineFoundation/outline-apps: This project uses AGENTS.md instead of CLAUDE.md.
clave CLAUDE.md
Instructions for codika-io/clave, covering clave, commands, architecture, conventions and signing and notarization.
itsyconnect-macos CLAUDE.md
Instructions for nickustinov/itsyconnect-macos, covering itsyconnect – llm build guide, required reading, project rules, core principles and routing and request interception.
snip CLAUDE.md
Instructions for rixinhahaha/snip, covering claude.md — autonomous agent instructions, role documents, documentation rules, how to update and critical constraints.
pin-it-public AGENTS.md
Instructions for johnnyzhoujz/pin-it-public, covering pin it repository guidance, working practices and packaged-app testing.