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/tobocop2/lilbee/agents-mdgit clone --depth 1 https://github.com/tobocop2/lilbeeWrote 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/tobocop2/lilbee/agents-md)<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>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.13269 | $0.13269 |
| Opus 5 | $0.06635 | $0.06635 |
| Sonnet 5 | $0.02654 | $0.02654 |
| Haiku 4.5 | $0.01327 | $0.01327 |
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.
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:
- 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). - 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, ...)/: strshape just propagates the smell into your diff. - One-line docstrings by default. Describe what the code IS, not how it got there. No "previously", "now also", "some versions", "kept for".
- The smell gate runs in
make lint.scripts/check_style_rules.pyfails on any NEW Code-Smell Trigger (see that section) on lines your diff adds vsmain. Runmake lintbefore committing; a genuinely dynamic case opts out inline with# style-check: allow-smellplus 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.
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.
- today Changed · +2 lines · +39 tokens per session 22f0d5016f0b
- 4d ago First seen · 634 lines · 13,230 tokens per session scan A 653ad9bf5b43
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.
Other instructions, from other repositories
OGAM AGENTS.md
AGENTS.md instructions for off-grid-ai/OGAM: All rules for this repository live in rules.md — the single, tool-neutral source of truth. This file is only a pointer so the rules stay identical no matter which agent reads them.
strix-halo-guide AGENTS.md
AGENTS.md instructions for hogeheer499-commits/strix-halo-guide, covering agents.md, core project lens, documentation style, do-not-invent rules and benchmark claim rules.
hybridclaw AGENTS.md
AGENTS.md instructions for HybridAIOne/hybridclaw, covering agents.md — hybridclaw engineering protocol, scope, 1) project snapshot, 2) project map and key data flows.
docmind-ai-llm AGENTS.md
Instructions for BjornMelin/docmind-ai-llm, covering docmind ai: agent instructions, purpose, layout, quick commands with uv and non-negotiables for ci and security.
hybridclaw CLAUDE.md
Claude Code instructions for HybridAIOne/hybridclaw: Follow AGENTS.md as the canonical repo instruction set for this repository.
obsidian-local-llm-hub AGENTS.md
AGENTS.md instructions for takeshy/obsidian-local-llm-hub, covering repository instructions and version bumps.