openpaul
    Preparing search index...

    Interface State

    State - Current position in the OpenPAUL loop

    Per-phase state files (state-phase-N.json) track:

    • Current loop position (PLAN/APPLY/UNIFY)
    • Current plan being executed
    • Timestamp of last state change
    • Phase-specific metadata
    interface State {
        currentPlanId?: string;
        lastUpdated: number;
        metadata: Record<string, unknown>;
        phase: LoopPhase;
        phaseNumber: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    currentPlanId?: string
    lastUpdated: number
    metadata: Record<string, unknown>
    phase: LoopPhase
    phaseNumber: number