LogLead CLAUDE.md

LogLead CLAUDE.md is an instructions file for coding agents from EvoTestOps/LogLead. It costs 9,974 tokens per session, scanned A, original, MIT.

Repository instructions for LogLead, a Python library that tests methods for detecting unusual patterns in computer logs. They explain the project, setup, commands, architecture, and important links to related projects.

In plain words
What is it for?
Use them when setting up LogLead, running its commands, changing loaders, log-processing methods, or anomaly detectors, and checking how changes may affect LogDelta or VisualLogAnalyzer.
Why use it?
They give coding agents the project context and working rules needed to make changes without misunderstanding its data format, environment, or public interfaces.

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/evotestops/loglead/claude-md
Clone the repo
git clone --depth 1 https://github.com/EvoTestOps/LogLead

Wrote 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.

agentmods badge for LogLead CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/evotestops/loglead/claude-md.svg)](https://agentmods.dev/instructions/evotestops/loglead/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/evotestops/loglead/claude-md"><img src="https://agentmods.dev/badge/instructions/evotestops/loglead/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 9,974 This file is loaded in full into every session.
When invoked 9,974 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.09974 $0.09974
Opus 5 $0.04987 $0.04987
Sonnet 5 $0.01995 $0.01995
Haiku 4.5 $0.00997 $0.00997

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

Security

Grade A, and why

LogLead 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.

CLAUDE.md · 531 lines

How it starts

The opening of the file, as written. The whole thing — 531 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to coding agents when working with code in this repository.

Project overview

LogLead (Log Loader, Enhancer, Anomaly Detector) is a Python library for benchmarking log anomaly detection algorithms and log representations. It provides custom loaders for ~10 public log datasets, ~11 log representation "enhancers" (parsers, tokenizers, n-grams, embeddings), and ~11 anomaly detection classifiers, so a given dataset/representation/classifier combination can be swapped independently. It is also used as a backend library by the sibling projects LogDelta and VisualLogAnalyzer, so changes to public APIs in loglead/ can affect those consumers.

Data is represented as Polars DataFrames throughout (not Pandas), chosen for speed.

Environment setup

  • Python 3.9–3.12 (.python-version pins 3.11 for local dev). Dependency/venv management is via uv; uv run <script> syncs the environment from pyproject.toml/uv.lock automatically, installing loglead itself editable into .venv — there is no separate install step, and no need to fiddle with sys.path to make import loglead work.
  • A .env file is not required for the normal uv workflow (there isn't one checked in, and none is needed for the smoke demos or tests/main.py). It only matters if you're pointing scripts at your own full-size dataset copies on disk:
    • LOG_DATA_PATH is read (via python-dotenv) by the "bring your own full dataset" scripts — demo/RawLoader_*, demo/parser_benchmark/*, demo/saner_2024_paper/*, demo/unsupervised_models.py. The quick demos (demo/HDFS_samples.py, demo/TB_samples.py) use bundled sample parquet files instead and never touch it. The downloader also doesn't use it — downloader/download_data.py reads root_folder from the YAML config (downloader/datasets.yml or one of tests/datasets_*.yml) instead.
    • See .env.sample for the format if you do need LOG_DATA_PATH.
  • There are two independent, unlinked ways to point tooling at a data directory on disk — nothing in the code cross-references them, so keeping them in sync (e.g. both pointing at ~/Datasets) is on you:
    • LOG_DATA_PATH in .env — used only by the demo scripts listed above.
    • root_folder in a dataset YAML config — used only by downloader/download_data.py, optionally overridden by its --location CLI flag. A test config's local_copy_folder (see Common commands below) links it back to downloader/datasets.yml's root_folder, but that's opt-in per config — it does not make root_folder itself a shared setting.
  • scikit-learn needs gcc/g++ to build. The pip-installed package does not pull in tensorflow, so BertEmbeddings (loglead/parsers/bert/) must have TF installed manually to work.

Read the full file on GitHub · 531 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. 3d ago First seen · 531 lines · 9,974 tokens per session scan A fbcfce744d7e

Subscribe to this mod's changes

LogLead CLAUDE.md is an instructions file published in the GitHub repository EvoTestOps/LogLead (30 stars, last pushed 7d ago), licensed MIT. It adds 9,974 tokens to every session, about $0.0499 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.

Related

Other instructions, from other repositories

debug-log-analyzer-mcp CLAUDE.md

Instructions for certinia/debug-log-analyzer-mcp, covering claude.md, project overview, development commands, install dependencies and build the typescript project.

certinia/debug-log-analyzer-mcp · 2,521 tokens

woclub AGENTS.md

AGENTS.md instructions for timememe/woclub: WOCLUB is a public, self-driven project updated by recurring autonomous sessions. Its full standing mandate is /workspace/DAILYPROJECTPROMPT.md; read and follow that file before changing this project. Preserve the visitor-content trust boundary, maintain the append-only…

timememe/woclub · 76 tokens

blockrun-mcp AGENTS.md

AGENTS.md instructions for BlockRunAI/blockrun-mcp, covering blockrun mcp, commands, project structure, key dependencies and install in codex.

BlockRunAI/blockrun-mcp · 282 tokens

openrouter-mcp-multimodal AGENTS.md

Instructions for stabgan/openrouter-mcp-multimodal, covering agent instructions, before you ship, releasing (read this before publishing), short version and version files (must all match package.json).

stabgan/openrouter-mcp-multimodal · 783 tokens

intervals-icu-mcp CLAUDE.md

Instructions for hhopke/intervals-icu-mcp, covering claude.md, project overview, development commands, architecture (quick reference) and tool categories.

hhopke/intervals-icu-mcp · 2,035 tokens

ai-toolkit AGENTS.md

Instructions for pipefy/ai-toolkit, covering repository guidelines, documentation map, project structure, import namespace migration: pipefysdk → pipefy and src/pipefysdk/init.py (transitional shim).

pipefy/ai-toolkit · 3,184 tokens