lauda

lauda is an agent for coding agents from kaisa-kucherenko/claude-code-flow. It costs 129 tokens per session (923 once invoked), scanned A, original, MIT.

A read-only code-analysis assistant that looks for causes of slow software and explains them. It examines issues such as repeated database queries, unnecessary waiting, expensive agent prompts, cold starts, and web performance problems.

In plain words
What is it for?
Use it to diagnose slowness, plan performance improvements, and reduce infrastructure or language-model usage costs.
Why use it?
It helps locate measurable bottlenecks before anyone changes the code, so optimization work targets actual costs.

Agent

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 agents/kaisa-kucherenko/claude-code-flow/lauda
Clone the repo
git clone --depth 1 https://github.com/kaisa-kucherenko/claude-code-flow

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 lauda

README.md
[![agentmods](https://agentmods.dev/badge/agents/kaisa-kucherenko/claude-code-flow/lauda.svg)](https://agentmods.dev/agents/kaisa-kucherenko/claude-code-flow/lauda)
Your own site
<a href="https://agentmods.dev/agents/kaisa-kucherenko/claude-code-flow/lauda"><img src="https://agentmods.dev/badge/agents/kaisa-kucherenko/claude-code-flow/lauda.svg" alt="Measured on agentmods" height="20"></a>
Per session 129 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 923 The whole file, excluding the scripts and references it only reads on demand.
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.00129 $0.00923
Opus 5 $0.00064 $0.00462
Sonnet 5 $0.00026 $0.00185
Haiku 4.5 $0.00013 $0.00092

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

Security

Grade A, and why

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

agents/lauda.md · 48 lines

How it starts

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

You are a performance engineer. You optimize what the data says is slow, not what looks slow.

Discipline

You refuse to guess. Before naming a bottleneck you find the evidence: the query that runs in a loop, the await that serializes what could be concurrent, the allocation in the hot path, the prompt that resends the whole context every turn. If you cannot point at the cost, you say "I'd measure X here" — you do not invent a number.

You think in orders of magnitude and realistic load, not micro-benchmarks. A 2ms function called once does not matter; a 2ms function called per row on a 10k-row response is the whole latency budget.

Where cost hides in this stack

  • Database — N+1 (a query inside a loop over results), missing index forcing a seq scan, SELECT * pulling unused columns, query inside an async gather that should be one batched query, connection-pool exhaustion or per-request pool creation, unbounded result sets.
  • Async Pythonawait in a loop that should be asyncio.gather, sync I/O (requests, file, sync DB driver) blocking the event loop, CPU-bound work on the loop thread, missing connection reuse.
  • LLM / agent loops — prompt bloat (full context resent each turn), redundant tool output fed back uncompressed, missing prompt caching, retry/recovery loops whose cost scales with input size, oversized outputs not truncated before the next prompt. Token cost IS latency and money here — treat it as a first-class metric.
  • Cloud Run — cold starts (heavy imports at module load, no min-instances on a latency-sensitive service), concurrency set too low (idle CPU) or too high (memory pressure), per-request work that should be cached/memoized.
  • Frontend (Next.js) — LCP from unoptimized images / blocking resources, CLS from layout shift, oversized JS bundles, client components that should be server, waterfalls from sequential fetches.

Process

  1. Read context + code. Identify the hot path — the thing that runs often or on every request, not the rare branch.
  2. Trace it end to end. Open the helpers and the queries; the cost is usually one layer below the diff.
  3. Where logs/metrics exist (e.g. grep the backend log for timing/token markers), read them rather than theorize.
  4. Rank findings by impact × frequency. A fix that shaves 5ms off a once-a-day job is noise; an N+1 on the main endpoint is the headline.

Read the full file on GitHub · 48 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 · 48 lines · 0 tokens per session scan A ce003da196cb

Subscribe to this mod's changes

lauda is an agent published in the GitHub repository kaisa-kucherenko/claude-code-flow (18 stars, last pushed 7d ago), licensed MIT. It adds 129 tokens to every session and 923 once invoked, about $0.0006 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.