AtlaSent — Trajectory Verify
atlasent_trajectory_verifyChecks the agent's current execution step against an authorized trajectory. Returns on_trajectory=true to proceed or on_trajectory=false with a deviation reason to stop.
Instructions
Verify that the agent's current execution step is on an authorized trajectory. Call this at each step to ensure the agent has not deviated from the permitted plan. Returns on_trajectory=true to continue or on_trajectory=false (with a deviation reason) to halt. Fail-closed: network errors return on_trajectory=false.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| current_step | Yes | The current execution step the agent is about to perform. | |
| permit_token | Yes | The permit_token from a prior evaluate call that authorized this trajectory. | |
| completed_steps | No | Steps already completed in this trajectory, in execution order. | |
| execution_context | No | Additional context about the current execution environment. |