A.D.A.M. maintains two parallel state systems running simultaneously. The first is the transport/activity state — the visible, controllable layer that determines whether the protocol is activated, suspended, or waiting for a handshake. The second is the reasoning overlay state — an internal governor that tracks where a long session is in its decision-making arc. Both systems shape behavior in every reply, but only the transport/activity state is directly user-controllable.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/xxyoudeadpunkxx/a.d.a.m.-adaptive-depth-and-mode/llms.txt
Use this file to discover all available pages before exploring further.
Transport/activity states
TRANSPORT
The protocol file is present in context but not yet activated. A.D.A.M. has not started.Only two inputs are recognized: exact No routing, no prose explanations, no partial answers are given before activation.
ADAM PING (activates the protocol) and exact remount replay (recovers to ACTIVE). Every other non-empty turn — including questions, commands, and probes — returns exactly:ACTIVE
The protocol is active. Full routing applies: mode tags appear on every non-strict reply, manual overrides work, structural routing fires, and DEEP gating is available.This is the normal operating state. Once
ACTIVE, the protocol stays there until ADAM OFF or a session ends.OFF
The protocol is suspended. Chat turns receive plain prose responses — no A.D.A.M. output contract applies.
ADAM ON is required to return to ACTIVE.While OFF, normal chat continues without any MODE tags. Strict commands (other than ADAM ON) return:State transition table
| Event | From | To | Notes |
|---|---|---|---|
Exact ADAM PING | TRANSPORT | ACTIVE | Runs full bootstrap (G0). Post-handshake reset fires. |
Exact ADAM PING | ACTIVE | ACTIVE | Liveness-only. No reset, no G0. |
Exact ADAM PING | OFF | OFF | Returns A.D.A.M. off. — does not reactivate. |
Exact ADAM OFF | ACTIVE | OFF | Suspends the protocol. |
Exact ADAM OFF | OFF | OFF | Already off; returns A.D.A.M. off. |
Exact ADAM ON | OFF | ACTIVE | Reactivates the protocol. |
Exact ADAM ON | ACTIVE | ACTIVE | Already active; no change. |
| Exact remount replay | TRANSPORT / ACTIVE / OFF | ACTIVE | Recovery path. Post-handshake reset fires. |
| Any other input | TRANSPORT | TRANSPORT | Returns NEXT: send ADAM PING. |
Post-handshake reset
When the state transitions fromTRANSPORT to ACTIVE via exact ADAM PING, or when exact remount replay confirms recovery, A.D.A.M. performs a post-handshake reset:
Clear pre-handshake context
Any context accumulated before activation is discarded. Pre-handshake turns do not carry forward as session premises.
Clear pending gating
Any pending
POSSIBLE DEEP gating from before activation is cleared. The next routed turn starts fresh.An
ADAM PING sent while already ACTIVE is liveness-only. It confirms the protocol is running and returns the 2-line liveness output, but it does not trigger a post-handshake reset, does not clear pending gating, does not discard cached gating references, and does not alter the overlay state.Reasoning overlay states
The reasoning overlay is a separate internal state system that governs long-session stability. It is ephemeral and inferred from visible conversation history — it is not stored by the protocol itself. It tracks where the session is in its decision-making arc.EXPLORE
Initial state when
ACTIVE begins. The session is gathering information and options; no commitment has been made.CONVERGE
Options are narrowing. The session is moving toward a decision. Anti-sticky rule: if
DEEP_CANDIDATE fires while in EXPLORE, the overlay automatically moves to CONVERGE.DECIDE
An explicit commitment or recommendation is on the table. The session is at or past a COMMIT.
AUDIT_ON is more readily triggered here.VERIFY
The decision is being tested, checked, or confirmed. Can transition back to
DECIDE if the verification surfaces new issues. AUDIT_ON is more readily triggered here.Overlay transitions
| From | To | Condition |
|---|---|---|
EXPLORE | CONVERGE | Normal session progression, or anti-sticky: DEEP_CANDIDATE fires while in EXPLORE. |
CONVERGE | DECIDE | A COMMIT is established. |
DECIDE | VERIFY | Decision is being tested or confirmed. |
VERIFY | DECIDE | Verification surfaces new issues requiring re-decision. |
| Any | EXPLORE | RETROGRADE_HARD fires — prior COMMIT invalidated by new structural constraints. |
AUDIT_ON computation: when STATE is DECIDE or VERIFY and structural signals are present, AUDIT_ON fires even without DEEP_CANDIDATE being true.
Default behavior when state is ambiguous
Two default rules apply when state cannot be established from visible context:-
Transport/activity default: If visible context does not establish
ACTIVE(via exactADAM PING,ADAM ON, or remount replay) orOFF(via exactADAM OFF), the transport/activity state defaults toTRANSPORT. -
Overlay default: If
ACTIVEis established but overlay history is unavailable or ambiguous, the overlay state defaults toEXPLORE.