Interface IDumpContext

Context required to identify a dump entry. Passed only through DumpAdapter - instances receive signalId, bucketName, and backtest via constructor.

interface IDumpContext {
    backtest: boolean;
    bucketName: string;
    description: string;
    dumpId: string;
    signalId: string;
}

Properties

backtest: boolean

Flag indicating if the context is backtest or live; routed to Memory.writeMemory

bucketName: string

Bucket name - groups dumps by strategy or agent name

description: string

Human-readable label describing the dump contents; included in the BM25 index for Memory search and rendered in Markdown output

dumpId: string

Unique identifier for this dump entry

signalId: string

Signal identifier - scopes the dump to a specific trade