A guide in the Context Base is a longer document you pin to your project so an agent can pull it into a conversation on demand. Unlike rules (always-on), skills (matched to a task), or commands (triggered by name), guides have no automatic behavior — they sit in the Context Base as reference material, and the agent reads one when you point it at one. Think of guides as the shelf of reference documents your team keeps next to the codebase: the authentication flow write-up, the migration plan nobody wants to re-derive, the brand styleguide you haven’t translated into rules yet. Available when needed, not injected on every task.Documentation Index
Fetch the complete documentation index at: https://docs.frontic.com/llms.txt
Use this file to discover all available pages before exploring further.
What guides are good for
Reference material
Architecture notes, data flow explanations, historical decisions,
onboarding reading. Things you want an agent to read when the
topic comes up, not on every unrelated task.
Material to distill later
An existing styleguide, a long design doc, an email thread with a
decision buried in it. Drop it in as a guide; extract rules or
skills from it over time as patterns become clear.
Multi-step walkthroughs
A migration plan (“move from v1 blocks to v2”), a refactor runbook,
a one-off procedure that isn’t recurring enough for a command but
is long enough that re-explaining it in chat is painful.
Architecture decisions
“Why we chose Pinia Colada for data fetching”, “How we handle
preview context in server components”. The why behind choices the
agent will otherwise second-guess.
How guides fit with the other Context Base types
The four Context Base types compared:| Triggered by | Shape | Example | |
|---|---|---|---|
| Guides | Explicitly referenced | Reference document | authentication-flow |
| Skills | A matching domain (or forced by name) | Domain expertise | seo-optimizer |
| Rules | Always active | Always-on constraint | product-images-through-cdn |
| Commands | Forced by name only | Task procedure | code-review |
Writing a guide
Open Studio → Context → Guides in the admin app and click New Guide. Creation asks for two things:- Name — short, descriptive.
authentication-flowis good;notes-dumpis not. - Description — one sentence about what the guide covers. Agents use this to decide whether to pull the guide into a conversation when you reference the collection.


Referencing a guide in chat
A few ways guides end up in an agent’s context:- Pick from the command menu — in a Studio workspace, open the command menu and select the guide from the list. The reliable path: you know the guide lands in context.
- Prompt and trust the agent — say “Read the Authentication flow guide before touching the login page” and the agent matches by name/description and pulls the guide in. Works in any MCP-capable editor, but it depends on the agent’s discovery — not as sure-fire as the command menu.
- Linked from another document — a skill or rule can reference a guide using Studio’s cross-reference syntax, and the agent pulls the linked guide in when the parent document applies.
Heads-up on syncing. Guides don’t currently export through
frontic context init — only skills and
rules sync to .claude/ and .cursor/ today.
Outside Studio, the way an agent reads a guide is by calling the Frontic
MCP to fetch the document directly. Coming soon: a CLI
option to pull guides into a target destination in your project
(default /guides) so they live on disk alongside the rest of your
Context Base.Related
Context Base
The mental model for the whole Context Base.
Skills
Task-specific reusable know-how.
Rules
Always-on constraints on agent behavior.
Commands
Named shortcuts for recurring operations.