AGENTS.md is the simplest way to teach Indent how your repository works. Drop it at the root of the repo and Indent reads it at the start of every session that touches that codebase.
What belongs here
UseAGENTS.md for guidance that applies across most tasks in the repo — the kind of things you’d tell a new teammate on their first day:
- Setup and key commands — how to install dependencies, run the dev server, run tests.
- Architecture — how the codebase is organized, what the major modules are, where to find things.
- Conventions — naming patterns, file structure rules, import ordering, error handling style.
- Testing expectations — what kinds of tests are expected for different types of changes.
- Deployment and rollout — how releases work, what environments exist, any gates or constraints.
Example
Keep it durable
AGENTS.md should contain guidance that stays true across many tasks. If something is specific to a particular workflow — like how to deploy a specific service, or how to triage a certain class of incident — put it in a Skill instead.