Glossary
Key terms used throughout guide-LLiMes.
ADR (Architecture Decision Record) β A short document recording a significant technical decision: what was decided, why, and what alternatives were rejected. See ADRs.
Context window β The total amount of text an LLM can process at once, including system prompt, conversation, code, and your guidelines. Measured in tokens.
Guardrail β A constraint on LLM behavior: files it canβt modify, steps it must run, decisions that require human approval. See LLM Guardrails.
Guideline β An explicit instruction that gives the LLM context about your project. Dense, scannable, actionable. Not documentation for humans β instructions for the model.
Must-have β A guideline that prevents fundamental breakage. Without it, the LLM will produce code that doesnβt fit the project at all. See Must-Have Guidelines.
Nice-to-have β A guideline that matters at scale or in regulated domains. Adds rigor but isnβt needed until the project matures. See Nice-to-Have Guidelines.
Should-have β A guideline that reduces variance in LLM output. The model can work without it, but quality and consistency improve with it. See Should-Have Guidelines.
System prompt β Hidden instructions prepended to every LLM conversation. Your guidelines become part of this prompt (or are loaded alongside it) by the tool you use.
Token β The unit of text that LLMs process. Roughly 1 token = 0.75 words in English. Your guidelines consume tokens from the context window.
Token budget β The practical limit on how many instructions your guidelines can contain before the model starts ignoring or conflating rules. See Token Budgets.
Three-tier model β guide-LLiMesβ framework for prioritizing guidelines: must-have (prevent breakage), should-have (reduce variance), nice-to-have (scale and compliance). See Three-Tier Model.
Ubiquitous language β A shared vocabulary where every concept has exactly one name, used consistently in code, documentation, and conversation. From Domain-Driven Design. See Domain Glossary.