AGENTS.md
| ID | agent_instructions |
| Category | Configuration |
| Features | None |
| Dependencies | None |
Reads project instruction files from the session workspace and injects their content into the system prompt. By default it reads AGENTS.md. Configure files when an agent should also read another file such as CLAUDE.md.
None — this capability only contributes to the system prompt.
How It Works
Section titled “How It Works”- Agent sends a message
- Before processing, the system reads configured files from the session filesystem
- Each file is wrapped in
<agent-instructions source="...">XML tags - Injected at the beginning of the system prompt (before other capability prompts)
Config
Section titled “Config”{ "files": ["AGENTS.md", "CLAUDE.md"]}files is optional. When omitted, Everruns reads only /workspace/AGENTS.md.
- Default file path:
/workspace/AGENTS.md(plain Markdown, max 32 KiB per file) - Re-read every turn — edits take effect immediately
- Missing configured files are ignored (no error)
- Works with File System tools to update instructions dynamically
See Also
Section titled “See Also”- AGENTS.md feature guide — detailed documentation
- File System — manage the AGENTS.md file
- Agent Skills — another way to inject specialized instructions
- Capabilities Overview