log-reducer AGENTS.md

Project instructions for using a log-reduction command-line tool, which reads log text and writes a shorter version. They also describe when to use it and the kinds of cleanup it performs.

In plain words
What is it for?
Reducing logs with the provided command, such as by removing terminal formatting, repeated noise, long IDs and URLs, timestamps, health checks, and parts of stack traces.
Why use it?
They give coding agents consistent guidance for handling large or noisy logs before adding them to a conversation.

Instructions file for CodexOpenCode

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/launch-it-labs/log-reducer/agents-md
Clone the repo
git clone --depth 1 https://github.com/launch-it-labs/log-reducer

Made for: Codex, OpenCode.

Per session 496 This file is loaded in full into every session.
When invoked 496 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.00496 $0.00496
Opus 5 $0.00248 $0.00248
Sonnet 5 $0.00099 $0.00099
Haiku 4.5 $0.00050 $0.00050

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

Security

Grade A, and why

log-reducer AGENTS.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.

AGENTS.md · 70 lines

How it starts

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

Log Reducer — Agent Instructions

This repository contains a log reduction tool that compresses verbose log output for AI consumption, achieving 50-90% token reduction while preserving semantic value.

Available tool

CLI (works with any agent that can execute shell commands):

node out/src/cli.js < input.log

Or pipe from another command:

some-command 2>&1 | node out/src/cli.js

The CLI reads log text from stdin and writes the reduced version to stdout.

When to reduce logs

Use the log reducer before inserting log content into a conversation whenever:

  • The log is longer than ~50 lines
  • The log contains UUIDs, tokens, or long hex strings
  • The log has repeated/duplicated lines
  • The log contains stack traces with framework internals

What it does

The pipeline applies 11 transforms in order:

  1. Strip ANSI escape codes
  2. Normalize whitespace (collapse blank lines, trim trailing spaces)
  3. Shorten IDs (UUIDs, hex strings, JWT tokens, generated IDs → $1, $2, ...)
  4. Shorten URLs (strip query params, collapse long paths)
  5. Simplify timestamps
  6. Filter noise (health checks, heartbeats, devtools artifacts)
  7. Strip source locations (browser console file.js:line prefixes)
  8. Compress shared prefixes (factor out repeated date/module/time prefixes)
  9. Deduplicate consecutive identical/near-identical lines
  10. Detect repeating multi-line cycles
  11. Fold stack traces (collapse framework internals, shorten file paths)

Project structure

  • src/pipeline.tsminify(input: string): string — the main entry point
  • src/transforms/ — Individual transform modules
  • src/cli.ts — CLI stdin/stdout wrapper
  • src/mcp-server.ts — MCP server for Claude Code
  • test/fixtures/ — Test fixtures (input.log + expected.log pairs)

Building

npm install
npx tsc -p ./

Testing

npm test

For Claude Code users

This project includes an MCP server configuration in .mcp.json (project root) that automatically exposes a reduce_log tool. See .claude/CLAUDE.md for details.

Read the full file on GitHub · 70 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 · 70 lines · 496 tokens per session scan A dd6e949eccbb

Subscribe to this mod's changes

log-reducer AGENTS.md is an instructions file published in the GitHub repository launch-it-labs/log-reducer (0 stars, last pushed 5mo ago), licensed MIT. It adds 496 tokens to every session, about $0.0025 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.