@archastro/sdk
    Preparing search index...

    Interface Trajectory

    A recorded sequence of AI messages and tool interactions representing a single AI reasoning session. Trajectories are stored as structured message logs and can be replayed or inspected after execution.

    interface Trajectory {
        created_at?: string;
        file?: string;
        id: string;
        messages?: Record<string, unknown>[];
        org?: string | null;
        sandbox?: string | null;
        team?: string | null;
        updated_at?: string;
    }
    Index

    Properties

    created_at?: string

    When the trajectory was recorded (ISO 8601).

    file?: string

    ID of the storage file that persists the raw trajectory data (fil_...).

    id: string

    Trajectory ID (trj_...).

    messages?: Record<string, unknown>[]

    Serialized message log for this trajectory. Contains the ordered sequence of AI and tool messages produced during the session.

    org?: string | null

    ID of the organization this trajectory belongs to (org_...). null for trajectories outside an org context.

    sandbox?: string | null

    ID of the developer sandbox this trajectory is scoped to (sbx_...). null for production trajectories.

    team?: string | null

    ID of the team this trajectory is scoped to (team_...). null for trajectories not associated with a team.

    updated_at?: string

    When the trajectory record was last updated (ISO 8601).