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

    Interface ExtractedClaudeUserMessage

    A user message extracted from a Claude timeline event.

    The content array contains the raw content blocks from the MessageParam.content field. When @anthropic-ai/sdk is installed, each element is a ContentBlockParam.

    interface ExtractedClaudeUserMessage {
        content: unknown[];
        sequence: number;
        text: string;
    }
    Index

    Claude SDK

    Claude SDK

    content: unknown[]

    The full array of content blocks from the user message, including non-text blocks.

    sequence: number

    The Axon event sequence number (useful as a stable ID).

    text: string

    Concatenated text from all text content blocks (convenience). Non-text blocks (images, tool results, etc.) are not included here — inspect content for the full set of blocks.