ETHOS.md
ETHOS.md is the intent layer for a production agent. It’s a simple, open standard for detecting and resolving divergence between developer intent and agent execution.
The goal of ETHOS.md is to transform scattered intent into a shared contract that builders, reviewers, and optimizers can use. Code shows implementation. Ethos is the only place that records mission, constraints, success and failure, and what may change.
Why it exists
Critical agent context lives outside the codebase: business objectives, developer intent, success and failure criteria, and safe modification boundaries. Humans rarely write all of that down. An optimizer that only sees code and traces cannot tell a real failure from a trade-off you already accepted.
Without an Ethos, every new agent has to rediscover that context, and automated changes are aligned to whatever the traces happen to show. With one, the same file can steer a new build, guide a review of logs and evals, reveal divergence from intent, and keep an optimization loop inside human-set bounds.
Scattered context, one contract
Intent arrives in pieces:
- The codebase — files, docs, configs, and logic. This is what the agent does today.
- Traces and logs — telemetry, errors, and metrics. This is how a run looked, not whether that look was acceptable.
- Business goals — objectives, value, and the result the agent is accountable for.
- Developer intent — tone, priorities, and the judgment calls that never made it into a ticket.
- Constraints — limits, policies, and guardrails no change may cross.
ETHOS.md is the portable snapshot of that contract. Write the intended state, not only the implemented one. Where they differ, say so.
What it unlocks
Change Scope is the machine-readable part of “safe changes”: each lever is yes (allowed), no (must not change), or with-approval.
Ethos is not AGENTS.md
The two files serve different agents.
What’s in the file
A Markdown file with front matter. Section bodies stay human-readable; the headings are the outline other agents parse.
Creating an ETHOS.md
On NeMo Platform, invoke the nemo-explore skill to learn about your agent, and gather intent through some Q&A, then nemo-ethos writes agents/<agent-name>-ethos/ETHOS.md. You can also author the file by hand. See Plugins and Skills.