logan CLAUDE.md

Project instructions for LOGAN, an Electron application that analyzes logs and includes an AI chat panel.

In plain words
What is it for?
Use them to run the chat message loop, read prior session memory, and save important findings for later.
Why use it?
They define how the agent communicates with users and preserves notes about each log file across reconnects.

Instructions file

Install

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.

agentmods
npx agentmods add instructions/solidkeyab/logan/claude-md
Clone the repo
git clone --depth 1 https://github.com/SolidKeyAB/logan
Per session 2,523 This file is loaded in full into every session.
When invoked 2,523 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 2d ago against content hash 0a519ca90c45, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

CLAUDE.md · 122 lines

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_read to 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.

Read the full file on GitHub · 122 lines

Changes

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.

  1. 2d ago First seen · 122 lines · 2,523 tokens per session scan A 0a519ca90c45

Subscribe to this mod's changes

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.