ISPO SDK
    Preparing search index...

    Variable promptHistoryConst

    Markdown
    promptHistory: {
        listSessions: (
            args?: PromptSessionListArgs,
        ) => Promise<PromptSessionListResult>;
        readSession: (
            store: PromptHistoryStore,
            key: string,
        ) => Promise<PromptSessionDetail>;
    } = ...

    Read-only local agent transcript access. Main only exposes known Codex and Claude Code JSONL roots, and readSession accepts the store-relative keys returned by listSessions; projects never provide absolute filesystem paths.

    Requires "read" in manifest requests.promptHistory.

    Type Declaration