MEMORY: block for managing session and persistent state, and the CONSTRAINTS: block for enforcing business rules.
MEMORY
Memory in ABL defines how an agent stores, retrieves, and persists information across conversation turns, sessions, and users. TheMEMORY: block declares four categories: session variables, persistent variables, remember triggers, and recall instructions.
Overview
Every agent has access to a memory configuration that controls data lifecycle:- Session variables exist for the duration of a single conversation session.
- Persistent variables survive across sessions, scoped to a user or project.
- Remember triggers automatically store values when conditions are met.
- Recall instructions load stored facts at specific lifecycle events.
Session variables
Session variables hold data that is relevant only during a single conversation. They are created when the session starts and discarded when the session ends (unlessRESET: never is specified).
Syntax
Properties
Reset behavior
Example: typed session variables
Persistent variables
Persistent variables survive across sessions. They are stored in a fact store and scoped to either a specific user or to the entire project.Syntax
user.* or project.*), but you can override this with the SCOPE property.
Properties
Scoping rules
- User scope (
SCOPE: user): Values are unique per authenticated user. Two users in the same project see different values for the same path. - Project scope (
SCOPE: project): Values are shared across all users within the project. Useful for reference data, feature flags, or global configuration. - Execution-tree scope (
SCOPE: execution_tree): Values are shared across one handoff tree / long-running execution — visible to the agents participating in that orchestration but not persisted per-user or per-project.
As shorthand, a
READS: sub-block declares persistent paths with ACCESS: read, and a WRITES:
sub-block declares them with ACCESS: write — an alternative to listing each path under
persistent: with an explicit ACCESS.Remember triggers
Remember triggers define rules for automatically storing values into persistent memory when a condition is met during conversation.Syntax
Properties
TTL format
TTL values use a duration string:
Example:
"90d" means the stored fact expires 90 days after it was written.
Recall instructions
Recall instructions define when and how to load persistent facts back into the session context. They execute at specific lifecycle events.Syntax
Properties
Recall events
ON: accepts these canonical lifecycle event patterns:
Recall actions
Accessing memory in expressions
Session variables are accessed by name in expressions and template strings:SET assignments in flow steps, ON_START, or hooks are written to session memory and available for the remainder of the session.
CONSTRAINTS
Constraints are deterministic business rules that the runtime evaluates against the current session state. Authors can still group constraints under named phases for readability, but phase names are currently labels only: the compiler flattens constraints into a single runtime list unless a constraint explicitly gates itself withWHEN or a structural checkpoint construct.
Overview
Constraints enforce guardrails on agent behavior that are separate from LLM instructions. They are deterministic checks evaluated by the runtime, not suggestions to the model. A constraint that fails blocks the current operation and triggers anON_FAIL action.
Phases
Named phases are retained as authoring labels for readability, review, and organization. They do not currently create separate runtime execution phases by themselves.Syntax
always, pre_booking, or eligibility_check when they help readers understand intent, but use WHEN to gate applicability and BEFORE only for explicit structural checkpoint targets.
Requirement rules
Each requirement within a phase uses one of three keywords:REQUIRE, LIMIT, or RESTRICT.
REQUIRE
The most common form. Asserts that a condition must be true. If the condition evaluates to false, theON_FAIL action is triggered.
LIMIT
Expresses a numeric boundary. Semantically equivalent toREQUIRE with a comparison, but communicates intent more clearly.
RESTRICT
Expresses a prohibition. The condition describes what is forbidden; when it evaluates to true, the constraint fails.WHEN
UseWHEN: to make a constraint apply only in a specific context without overloading the phase label.
BEFORE
UseBEFORE for structural checkpoints that the runtime knows how to activate.
BEFORE calling <tool_name>BEFORE returning results
BEFORE targets are retained for compatibility, but they are warning-only and have no runtime effect. Prefer IMPLIES or WHEN for that form.
IMPLIES
IMPLIES is an inline condition operator (not a top-level keyword) for expressing conditional
requirements. A IMPLIES B is lowered to NOT (A) OR (B) — that is, “if A holds, then B must also
hold.” Use it inside the condition of a REQUIRE/LIMIT/RESTRICT rule:
Constraint properties
ON_FAIL actions
TheON_FAIL value determines what happens when a constraint fails.
String message (respond)
The most common form. Sends a message to the user and halts the current operation.HANDOFF
Transfers control to another agent. Active flow and reasoning runtime checkpoints execute the handoff immediately when the constraint fails.ESCALATE
Triggers human escalation.Block
Silently blocks the operation without a user-facing message.Structured ON_FAIL block
For more control, use a structured block that combines multiple actions.Structured ON_FAIL properties
Collect and retry example
GOTO example
Severity levels
Constraint evaluation order
- Constraint phase names such as
alwaysorpre_bookingare labels only; the compiler flattens all constraints into one runtime list. WHENgates a constraint to a specific context, and structuralBEFOREgates it to supported checkpoints such as tool calls or final responses.- Inline flow-step
CHECKexpressions are separate fromCONSTRAINTSand evaluate directly againststep.check. - Declaration order is preserved in the flattened list.
- Evaluation stops at the first
error-severity failure. Warnings do not halt evaluation.
Template interpolation in messages
ON_FAIL message strings support {{variable}} interpolation using the current session context:
Related pages
- Guardrails — input/output safety checks (distinct from business rule constraints)
- Expressions & functions — condition expression syntax
- Multi-Agent & Supervisor — HANDOFF and ESCALATE actions referenced in ON_FAIL
- Lifecycle & hooks —
ON_STARThandler where initial memory setup occurs - Data types — type definitions used in
TYPEdeclarations