The playbook is a markdown file that tells the agent what to try and why. It is the primary lever for domain expertise: when you know something about your hardware or workload that the agent doesn’t, you add a heuristic to the playbook. The default playbook lives atDocumentation Index
Fetch the complete documentation index at: https://docs.aevyra.ai/llms.txt
Use this file to discover all available pages before exploring further.
src/aevyra_forge/playbook.md and is
bundled into the package so it works after pip install.
Structure
A playbook is a markdown file with## section headings. Sections
Forge always includes in the agent prompt:
| Section | Purpose |
|---|---|
## Search space | Legal values for each config field |
## Heuristics | Rules of thumb for what to try first |
## Forbidden | Config combinations that crash or regress |
## Termination | When to stop searching |
YAML front-matter
version is used by Reflex (the prompt optimizer) to track playbook
revisions.
Custom playbook
Pass--playbook path/to/playbook.md to override the built-in:
Validate a playbook
Programmatic access
format_for_agent filters to only the sections relevant for the
current hardware and layer, keeping the agent prompt focused.