lilbee AGENTS.md

lilbee AGENTS.md is an instructions file for Codex, OpenCode from tobocop2/lilbee. It costs 13,269 tokens per session, scanned A, original, MIT.

An instruction file for agents developing lilbee, a software project that uses beads for task tracking. It records project-specific coding rules, such as precise types, short docstrings, and running the style checks before finishing.

In plain words
What is it for?
Use it as the development guide for lilbee: read it before editing, follow its Python style rules, and run the lint checks before committing changes.
Why use it?
It tells agents about mistakes that have caused review problems and makes the repository's expectations explicit. This helps agents follow local conventions instead of copying questionable nearby code.

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/tobocop2/lilbee/agents-md
Clone the repo
git clone --depth 1 https://github.com/tobocop2/lilbee

Made for: Codex, OpenCode.

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 lilbee AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/tobocop2/lilbee/agents-md.svg)](https://agentmods.dev/instructions/tobocop2/lilbee/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/tobocop2/lilbee/agents-md"><img src="https://agentmods.dev/badge/instructions/tobocop2/lilbee/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 13,269 This file is loaded in full into every session.
When invoked 13,269 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.13269 $0.13269
Opus 5 $0.06635 $0.06635
Sonnet 5 $0.02654 $0.02654
Haiku 4.5 $0.01327 $0.01327

Measured today against content hash 22f0d5016f0b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

lilbee 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 today.

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 · 636 lines

How it starts

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

lilbee — Development Guide

Before You Write Code (read this every time)

This file is long and the operational rules sit far down. These are the misses that have cost the most review cycles. Apply them BEFORE writing, not after:

  1. Type external objects precisely. Never getattr(obj, "field", default) on a field the object's type guarantees. Annotate the parameter with the real type and read the attribute directly. getattr-with-default is only for attributes that genuinely may not exist (dynamic reflection).
  2. Don't inherit the surrounding code's pattern without checking it against these rules. Nearby code may predate a rule. Copying an adjacent getattr / isinstance(self.app, ...) / : str shape just propagates the smell into your diff.
  3. One-line docstrings by default. Describe what the code IS, not how it got there. No "previously", "now also", "some versions", "kept for".
  4. The smell gate runs in make lint. scripts/check_style_rules.py fails on any NEW Code-Smell Trigger (see that section) on lines your diff adds vs main. Run make lint before committing; a genuinely dynamic case opts out inline with # style-check: allow-smell plus a written reason.

The full rules follow; this block is the part that gets skipped under time pressure, so it leads.

Project

The whole local AI stack in one executable: a model manager plus a search engine you can talk to. Python 3.11+, pluggable LLM providers (a managed local llama-server fleet by default, Ollama/OpenAI via litellm), LanceDB for vectors. Managed with uv. Task tracking with beads (bd).

Framing: Lead with "the whole local AI stack in one executable". Two pillars, always both: it runs and manages the models (its own model manager, no Ollama or LM Studio needed, works with both), and it is a search engine you can talk to (cited answers). "RAG" and "local-first" are properties, not the identity. lilbee is both a standalone multipurpose tool AND an AI agent backend.

Read the full file on GitHub · 636 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. today Changed · +2 lines · +39 tokens per session 22f0d5016f0b
  2. 4d ago First seen · 634 lines · 13,230 tokens per session scan A 653ad9bf5b43

Subscribe to this mod's changes

lilbee AGENTS.md is an instructions file published in the GitHub repository tobocop2/lilbee (51 stars, last pushed today), licensed MIT. It adds 13,269 tokens to every session, about $0.0663 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.