@runloop/agent-axon-client
    Preparing search index...

    Type Alias SDKSessionInfo

    Session metadata returned by listSessions and getSessionInfo.

    type SDKSessionInfo = {
        createdAt?: number;
        customTitle?: string;
        cwd?: string;
        fileSize?: number;
        firstPrompt?: string;
        gitBranch?: string;
        lastModified: number;
        sessionId: string;
        summary: string;
        tag?: string;
    }
    Index

    Claude SDK

    createdAt?: number

    Creation time in milliseconds since epoch, extracted from the first entry's timestamp.

    customTitle?: string

    User-set session title via /rename.

    cwd?: string

    Working directory for the session.

    fileSize?: number

    File size in bytes. Only populated for local JSONL storage.

    firstPrompt?: string

    First meaningful user prompt in the session.

    gitBranch?: string

    Git branch at the end of the session.

    lastModified: number

    Last modified time in milliseconds since epoch.

    sessionId: string

    Unique session identifier (UUID).

    summary: string

    Display title for the session: custom title, auto-generated summary, or first prompt.

    tag?: string

    User-set session tag.