Interface ExecutionFeedback

Feedback from plan execution used for refinement.

interface ExecutionFeedback {
    planId: string;
    stepId: string;
    feedbackType: FeedbackType;
    details: string;
    suggestedCorrection?: string;
    severity: "critical" | "error" | "warning" | "info";
}

Properties

planId: string

Plan being executed

stepId: string

Step that generated feedback

feedbackType: FeedbackType

Type of feedback

details: string

Feedback details

suggestedCorrection?: string

Suggested correction

severity: "critical" | "error" | "warning" | "info"

Severity of the issue