Type Alias PlanStatusResult
PlanStatusResult: {
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 };
}
Type Declaration
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 }
Comprehensive status of all plan components — constitution, spec, plan, tasks, checklist, and next step.