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: {
blocked: number;
blockedTasks: {
reasons: {
kind: "dependency_unmet"
| "gate_not_ready";
nodeId: string;
}[];
taskId: string;
}[];
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: {
blocked: number;
blockedTasks: {
reasons: {
kind: "dependency_unmet" | "gate_not_ready";
nodeId: string;
}[];
taskId: string;
}[];
done: number;
total: number;
}
Comprehensive status of all plan components — constitution, spec, plan, tasks, checklist, and next step.