Interface ReflectionResult

Result of self-reflection.

interface ReflectionResult {
    insights: string[];
    issues: string[];
    adjustments: PlanAdjustment[];
    confidenceAdjustment: number;
    recommendation: "continue" | "adjust" | "replan" | "abort";
}

Properties

insights: string[]

Key insights from reflection

issues: string[]

Identified issues

adjustments: PlanAdjustment[]

Suggested plan adjustments

confidenceAdjustment: number

Updated confidence score

recommendation: "continue" | "adjust" | "replan" | "abort"

Whether to continue or replan