Agent Mail — optional coordination adapter
Agent Mail carries messages, acknowledgements, identities, and temporary file
reservations. It is not a task tracker, queue, proof ledger, or lifecycle
controller.
Reservations are advisory: they prevent collisions only because every
cooperating writer checks them against the same absolute project path, and one
writer registered against a different path resolution makes the whole ledger
advisory fiction. Agent Mail enforces nothing on a writer that does not check.
Named failure mode — silence-as-status: reading an unanswered thread as
"work stalled" or "work done"; mail silence proves only that no mail arrived.
Anti-pattern: widening or renewing a reservation unprompted when a conflict
appears. Corrective: report the conflict to the caller as-is; scope and TTL
changes are the caller's call.
Boundary
- Skip Agent Mail for a single writer.
- The caller supplies the absolute project path, agent identities, thread id,
participants, paths, exclusivity, reason, and TTL.
- Reservations prevent accidental overlap among cooperating writers. They do not
create work ownership or affect Plan, Candidate, or verdict semantics.
- Mail silence proves nothing about work status.
- A message or acknowledgement is evidence that communication occurred, not
evidence that a change is correct or complete. The adapter cannot select
AgentOps semantics, issue a binding verdict, or turn factory completion into
delivery or validation proof.
- Release a reservation, including any
force_release, only on the caller's
explicit request for that exact reservation. Force-release has no autonomous
trigger; a conflict is reported, not force-cleared.
- Agent Mail never selects work, changes tracker state, commits code, validates,
integrates, closes, releases, or delivers work.
Modes and authority
Two disjoint surfaces; do not reach the second from the first:
- Coordination mode (default). Register identity, reserve/release the
caller's paths, send/read/acknowledge the caller's threads. This is the whole
of routine use, and all of it writes durable Agent Mail records.
- Admin / disaster-recovery mode (explicitly caller-authorized only).
Installing the git pre-commit guard,
doctor repair, backup/restore, and the
irreversible clear-and-reset-everything are a separate mode. Each requires
the caller's explicit authorization for that specific operation; none is ever
performed as a side effect of coordination. clear-and-reset-everything
deletes the database and all storage and cannot be undone — never run it, even
with --force, without an explicit destructive-reset authorization from the
caller.
Surfaces
Choose exactly one mailbox owner and access mode for each storage root. When an
HTTP/MCP daemon owns the root, use its MCP tools; do not point the direct am
CLI at the same database. Use the CLI fallback only with a root not owned by a
running Agent Mail runtime. A busy mailbox activity lock or a bounded read
timeout is a degraded adapter result, not permission to restart the service,
repair the database, or silently switch roots.
Use the MCP tools when they are present. Otherwise use the self-describing am
CLI. Pin the intended storage root explicitly, and discover current syntax with
am mail --help, am file_reservations --help, and related group help; do not
infer commands from remembered aliases. If a direct macOS read rejects a
symlinked snapshot directory such as /var, use a caller-scoped, non-symlinked
temporary directory for that isolated invocation or report the adapter
degraded; never weaken the traversal check.
One-shot use
- Confirm that multiple explicitly coordinated writers share the repository.
- Freeze one storage root and either MCP/server mode or direct-CLI mode; never
mix both against the same live database.
- Register the caller-supplied identity against the same absolute project path.
- Reserve only the supplied paths, with a bounded TTL.
- Report conflicts without waiting, narrowing scope, or changing the plan.
- Send the supplied message once and record its id.
- Read or acknowledge only the requested thread.
- Before the caller advances a declared transition, verify every
acknowledgement-required message in that transition has the intended
recipient acknowledgement. Later traffic is not an implicit acknowledgement.
- Release only reservations the caller explicitly asks to release.
Output
Return the project, identity, thread/message ids, reservation ids and paths
(with their TTLs), conflicts, and timestamps. The caller owns all subsequent
decisions.
Terminal outcomes are explicit, never silent:
- Adapter unavailable — neither the MCP tools nor the
am CLI is present:
report that Agent Mail is unavailable and stop. Do not fall back to
hand-written coordination or treat the absence as "no conflicts".
- Reservation conflict — report the conflicting reservation as-is; do not
narrow, widen, renew, or force-release it.
- Mailbox ownership conflict — a daemon and direct CLI contend for one
storage root: report the lock owner/mode and stop; do not restart, repair, or
bypass the lock as a coordination side effect.
- Required acknowledgement pending — report the exact message and intended
recipient and stop the dependent transition. Do not infer acknowledgement
from a later reply or repair it after validation.
- Timeout / degraded surface — report the operation as timed out or degraded
with what was and was not observed; a timeout is evidence, not "done".
- Cleanup — reservations released this session are listed by id; any left
in place (still holding a TTL) are named so the caller can see what remains.
References
- CLI and MCP surface notes
- Coordination patterns
- Troubleshooting
1---2name: agent-mail3description: Use Agent Mail as an optional messaging and file-reservation adapter for explicitly coordinated writers. Triggers: "coordinate writers", "reserve files".4---5# Agent Mail — optional coordination adapter
6
7Agent Mail carries messages, acknowledgements, identities, and temporary file
8reservations. It is not a task tracker, queue, proof ledger, or lifecycle
9controller.
10
11Reservations are **advisory**: they prevent collisions only because every
12cooperating writer checks them against the same absolute project path, and one
13writer registered against a different path resolution makes the whole ledger
14advisory fiction. Agent Mail enforces nothing on a writer that does not check.
15
16Named failure mode — **silence-as-status**: reading an unanswered thread as
17"work stalled" or "work done"; mail silence proves only that no mail arrived.
18
19Anti-pattern: widening or renewing a reservation unprompted when a conflict
20appears. Corrective: report the conflict to the caller as-is; scope and TTL
21changes are the caller's call.
22
23## Boundary
24
25- Skip Agent Mail for a single writer.
26- The caller supplies the absolute project path, agent identities, thread id,
27 participants, paths, exclusivity, reason, and TTL.
28- Reservations prevent accidental overlap among cooperating writers. They do not
29 create work ownership or affect Plan, Candidate, or verdict semantics.
30- Mail silence proves nothing about work status.
31- A message or acknowledgement is evidence that communication occurred, not
32 evidence that a change is correct or complete. The adapter cannot select
33 AgentOps semantics, issue a binding verdict, or turn factory completion into
34 delivery or validation proof.
35- Release a reservation, including any `force_release`, only on the caller's
36 explicit request for that exact reservation. Force-release has no autonomous
37 trigger; a conflict is reported, not force-cleared.
38- Agent Mail never selects work, changes tracker state, commits code, validates,
39 integrates, closes, releases, or delivers work.
40
41## Modes and authority
42
43Two disjoint surfaces; do not reach the second from the first:
44
45- **Coordination mode (default).** Register identity, reserve/release the
46 caller's paths, send/read/acknowledge the caller's threads. This is the whole
47 of routine use, and all of it writes durable Agent Mail records.
48- **Admin / disaster-recovery mode (explicitly caller-authorized only).**
49 Installing the git pre-commit guard, `doctor repair`, backup/restore, and the
50 irreversible `clear-and-reset-everything` are a separate mode. Each requires
51 the caller's explicit authorization for that specific operation; none is ever
52 performed as a side effect of coordination. `clear-and-reset-everything`
53 deletes the database and all storage and cannot be undone — never run it, even
54 with `--force`, without an explicit destructive-reset authorization from the
55 caller.
56
57## Surfaces
58
59Choose exactly one mailbox owner and access mode for each storage root. When an
60HTTP/MCP daemon owns the root, use its MCP tools; do not point the direct `am`
61CLI at the same database. Use the CLI fallback only with a root not owned by a
62running Agent Mail runtime. A busy mailbox activity lock or a bounded read
63timeout is a degraded adapter result, not permission to restart the service,
64repair the database, or silently switch roots.
65
66Use the MCP tools when they are present. Otherwise use the self-describing `am`
67CLI. Pin the intended storage root explicitly, and discover current syntax with
68`am mail --help`, `am file_reservations --help`, and related group help; do not
69infer commands from remembered aliases. If a direct macOS read rejects a
70symlinked snapshot directory such as `/var`, use a caller-scoped, non-symlinked
71temporary directory for that isolated invocation or report the adapter
72degraded; never weaken the traversal check.
73
74## One-shot use
75
761. Confirm that multiple explicitly coordinated writers share the repository.
772. Freeze one storage root and either MCP/server mode or direct-CLI mode; never
78 mix both against the same live database.
793. Register the caller-supplied identity against the same absolute project path.
804. Reserve only the supplied paths, with a bounded TTL.
815. Report conflicts without waiting, narrowing scope, or changing the plan.
826. Send the supplied message once and record its id.
837. Read or acknowledge only the requested thread.
848. Before the caller advances a declared transition, verify every
85 acknowledgement-required message in that transition has the intended
86 recipient acknowledgement. Later traffic is not an implicit acknowledgement.
879. Release only reservations the caller explicitly asks to release.
88
89## Output
90
91Return the project, identity, thread/message ids, reservation ids and paths
92(with their TTLs), conflicts, and timestamps. The caller owns all subsequent
93decisions.
94
95Terminal outcomes are explicit, never silent:
96
97- **Adapter unavailable** — neither the MCP tools nor the `am` CLI is present:
98 report that Agent Mail is unavailable and stop. Do not fall back to
99 hand-written coordination or treat the absence as "no conflicts".
100- **Reservation conflict** — report the conflicting reservation as-is; do not
101 narrow, widen, renew, or force-release it.
102- **Mailbox ownership conflict** — a daemon and direct CLI contend for one
103 storage root: report the lock owner/mode and stop; do not restart, repair, or
104 bypass the lock as a coordination side effect.
105- **Required acknowledgement pending** — report the exact message and intended
106 recipient and stop the dependent transition. Do not infer acknowledgement
107 from a later reply or repair it after validation.
108- **Timeout / degraded surface** — report the operation as timed out or degraded
109 with what was and was not observed; a timeout is evidence, not "done".
110- **Cleanup** — reservations released this session are listed by id; any left
111 in place (still holding a TTL) are named so the caller can see what remains.
112
113## References
114
115- [CLI and MCP surface notes](references/TOOLS.md)
116- [Coordination patterns](references/WORKFLOWS.md)
117- [Troubleshooting](references/RECOVERY.md)