openpaul
    Preparing search index...

    Interface Plan

    Plan - Executable plan with tasks

    Plans contain:

    • Phase and plan identifiers
    • Type (execute or tdd)
    • Wave number for parallel execution
    • Dependencies on other plans
    • Files to be modified
    • Autonomous flag (true if no checkpoints)
    • Tasks to execute
    • Must-haves for goal-backward verification
    interface Plan {
        autonomous: boolean;
        boundaries?: string[];
        criteria?: string[];
        depends_on: string[];
        executionGraph?: ExecutionGraph;
        files_modified: string[];
        must_haves?: MustHaves;
        phase: string;
        plan: string;
        requirements?: string[];
        taskDependencies?: TaskDependencies;
        tasks: Task[];
        type: "execute" | "tdd";
        wave: number;
    }
    Index

    Properties

    autonomous: boolean
    boundaries?: string[]
    criteria?: string[]
    depends_on: string[]
    executionGraph?: ExecutionGraph
    files_modified: string[]
    must_haves?: MustHaves
    phase: string
    plan: string
    requirements?: string[]
    taskDependencies?: TaskDependencies
    tasks: Task[]
    type: "execute" | "tdd"
    wave: number