This file is the entrypoint for cloud/Claude coding agents. Use it with Agents.md.
Agents.md(root policy and protocol overview)- Component docs closest to changed code:
Agmente/AGENTS.mdACPClient/AGENTS.mdAppServerClient/AGENTS.mdAgmenteTests/AGENTS.mdAgmenteUITests/AGENTS.md
- Use root
.agmente.pathsfor machine-local external repo paths. - Required vars:
AGMENTE_ACP_REPO,AGMENTE_CODEX_REPO. - Read this file when running upstream-spec/source checks.
- Agmente supports two protocol modes: ACP and Codex app-server.
- Protocol is detected after
initializeand routed to protocol-specific view models. - Keep ACP and Codex behaviors separate unless a shared abstraction is intentional and tested.
- Prefer component-local changes; avoid cross-cutting refactors unless needed.
- Do not add personal local filesystem paths to tracked files.
- If behavior differs by protocol, document both expected paths.
- For UI changes, keep accessibility identifiers stable or update UI tests in the same PR.
- Update
Agents.mdand this file in the same PR when:- adding a new top-level component,
- adding protocol support,
- changing cross-component architecture.
- Update nested
<component>/AGENTS.mdin the same PR when behavior in that component changes. - If no docs are needed, include
Docs: N/Ain PR notes.
- Run focused tests for touched components first.
- For protocol lifecycle changes, run both:
AgmenteTests/CodexServerViewModelTestsAgmenteTests/ViewModelSyncTests
- For UI flow or accessibility changes, run relevant
AgmenteUITests. - Codex E2E remains opt-in via environment configuration (see
AgmenteUITests/AGENTS.md).