Interface ICortexStep

A single step (tool call) in a Cascade trajectory.

interface ICortexStep {
    completedAt?: Date;
    createdAt: Date;
    data: Record<string, unknown>;
    id: string;
    index: number;
    metadata: IStepMetadata;
    status: StepStatus;
    summary: string;
    type: CortexStepType;
}

Properties

completedAt?: Date

Timestamp when step completed (if completed)

createdAt: Date

Timestamp when step was created

data: Record<string, unknown>

Step-specific data (command line, file path, etc.)

id: string

Unique step identifier

index: number

Step index within the trajectory

metadata: IStepMetadata

Internal metadata not shown in UI

status: StepStatus

Current status

summary: string

Human-readable summary of what this step does

Type of tool call