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/evotestops/loglead/claude-mdgit clone --depth 1 https://github.com/EvoTestOps/LogLeadWrote 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.
[](https://agentmods.dev/instructions/evotestops/loglead/claude-md)<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>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.
| Model | Per session | Once 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 |
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.
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-versionpins 3.11 for local dev). Dependency/venv management is viauv;uv run <script>syncs the environment frompyproject.toml/uv.lockautomatically, installinglogleaditself editable into.venv— there is no separate install step, and no need to fiddle withsys.pathto makeimport logleadwork. - A
.envfile is not required for the normaluvworkflow (there isn't one checked in, and none is needed for the smoke demos ortests/main.py). It only matters if you're pointing scripts at your own full-size dataset copies on disk:LOG_DATA_PATHis read (viapython-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.pyreadsroot_folderfrom the YAML config (downloader/datasets.ymlor one oftests/datasets_*.yml) instead.- See
.env.samplefor the format if you do needLOG_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_PATHin.env— used only by the demo scripts listed above.root_folderin a dataset YAML config — used only bydownloader/download_data.py, optionally overridden by its--locationCLI flag. A test config'slocal_copy_folder(see Common commands below) links it back todownloader/datasets.yml'sroot_folder, but that's opt-in per config — it does not makeroot_folderitself a shared setting.
scikit-learnneedsgcc/g++to build. Thepip-installed package does not pull intensorflow, soBertEmbeddings(loglead/parsers/bert/) must have TF installed manually to work.
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 · 531 lines · 9,974 tokens per session scan A fbcfce744d7e
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.
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.
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…
blockrun-mcp AGENTS.md
AGENTS.md instructions for BlockRunAI/blockrun-mcp, covering blockrun mcp, commands, project structure, key dependencies and install in codex.
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).
intervals-icu-mcp CLAUDE.md
Instructions for hhopke/intervals-icu-mcp, covering claude.md, project overview, development commands, architecture (quick reference) and tool categories.
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).