llms-keeper

llms-keeper is a skill for Claude Code, Codex from spumer/i-m-senior-developer. It costs 151 tokens per session (703 once invoked), scanned A, original, MIT.

A project-context writer that creates and maintains `llms.txt` and `llms-full.txt`, two standard files that help AI agents understand a codebase.

In plain words
What is it for?
It documents the project’s purpose, technology, structure, data flow, configuration, commands, testing practices, and common pitfalls in a compact or complete format.
Why use it?
It reduces the time an AI agent spends finding the important parts of a project and avoids burying useful details in irrelevant text.

Skill for Claude CodeCodex

Part of the llms-keeper plugin — 1 skill, 1 command, 1 agent shipped together

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 skills/spumer/i-m-senior-developer/llms-keeper
Any agent
npx skills add spumer/i-m-senior-developer --skill llms-keeper
Clone the repo
git clone --depth 1 https://github.com/spumer/i-m-senior-developer

Made for: Claude Code, Codex.

Or install llms-keeper, the plugin that ships this one along with the rest of its 1 skill, 1 command, 1 agent.

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 llms-keeper

README.md
[![agentmods](https://agentmods.dev/badge/skills/spumer/i-m-senior-developer/llms-keeper.svg)](https://agentmods.dev/skills/spumer/i-m-senior-developer/llms-keeper)
Your own site
<a href="https://agentmods.dev/skills/spumer/i-m-senior-developer/llms-keeper"><img src="https://agentmods.dev/badge/skills/spumer/i-m-senior-developer/llms-keeper.svg" alt="Measured on agentmods" height="20"></a>
Per session 151 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 703 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.00151 $0.00703
Opus 5 $0.00076 $0.00351
Sonnet 5 $0.00030 $0.00141
Haiku 4.5 $0.00015 $0.00070

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

Security

Grade A, and why

llms-keeper 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 5d 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.

plugins/llms-keeper/skills/llms-keeper/SKILL.md · 76 lines

How it starts

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

llms-keeper — Project Context for AI Agents

Generate and maintain llms.txt and llms-full.txt files following the llmstxt.org standard to give AI agents quick project understanding.

Core Philosophy

"Find the smallest set of high-signal tokens that maximize the likelihood of desired outcome."

Every sentence must answer: "Will an AI agent produce worse results without this information?" If no — delete without hesitation.

Two Files, Two Purposes

File Purpose Audience Length
llms.txt Navigation index AI needing quick orientation 50-100 lines
llms-full.txt Complete context AI needing full understanding 200-600 lines

Signal vs Noise

Always Include (High-Signal)

  • Project purpose and tech stack
  • Architecture: module hierarchy, dependency direction
  • Data flow patterns (ASCII diagrams for complex flows)
  • Key patterns used across 3+ files
  • Configuration approach and entry points
  • Common pitfalls with solutions
  • Essential development commands
  • Testing approach and conventions

Never Include (Noise)

  • Step-by-step tutorials or implementation guides
  • Temporary workarounds, TODOs, FIXMEs
  • Patterns used in only 1 file
  • Verbose explanations ("This module is responsible for...")
  • Obvious information for experienced developers
  • Credentials, API keys, secrets

Workflow

Delegate analysis and generation to the documentation-keeper agent.

The agent handles the full process: framework auto-detection, codebase scanning, pattern extraction, file generation, and quality verification.

For manual or informational use, the workflow is:

  1. Scan project structure and detect tech stack from manifest files
  2. Read key sources: entry points, core modules, configs, tests, docs
  3. Extract high-signal information (architecture, patterns, pitfalls)
  4. Generate llms-full.txt first (self-contained content)
  5. Derive llms.txt from it (navigation index linking to sections)
  6. Verify quality checklist from references/llmstxt-spec.md

Read the full file on GitHub · 76 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago First seen · 76 lines · 151 tokens per session scan A d679bd28973a

Subscribe to this mod's changes

llms-keeper is a skill published in the GitHub repository spumer/i-m-senior-developer (11 stars, last pushed 3d ago), licensed MIT. It adds 151 tokens to every session and 703 once invoked, about $0.0008 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.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

imagegen

Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…

openai/codex · 113 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens