SysProM
    Preparing search index...

    Interface PlanStatus

    Comprehensive status of all plan components — constitution, spec, plan, tasks, checklist, and next step.

    interface PlanStatus {
        checklist: { defined: boolean; done: number; total: number };
        constitution: { defined: boolean; principleCount: number };
        nextStep: string;
        plan: { defined: boolean; phaseCount: number };
        spec: {
            defined: boolean;
            storiesNeedingAcceptanceCriteria: string[];
            userStoryCount: number;
        };
        tasks: { done: number; total: number };
    }
    Index

    Properties

    checklist: { defined: boolean; done: number; total: number }
    constitution: { defined: boolean; principleCount: number }
    nextStep: string
    plan: { defined: boolean; phaseCount: number }
    spec: {
        defined: boolean;
        storiesNeedingAcceptanceCriteria: string[];
        userStoryCount: number;
    }
    tasks: { done: number; total: number }