Member Junction
    Preparing search index...

    Root context for the Agent Manager that tracks the entire creation process

    interface AIAgentManagerContext {
        agent: AIAgentDefinition;
        processStage:
            | "requirements"
            | "design"
            | "prompting"
            | "implementation"
            | "validation"
            | "complete";
        session: {
            id: string;
            notes: string;
            purpose: string;
            startedAt: string;
            userId: string;
            userName: string;
        };
        validation?: { isValid: boolean; report: string };
    }
    Index

    Properties

    processStage:
        | "requirements"
        | "design"
        | "prompting"
        | "implementation"
        | "validation"
        | "complete"
    session: {
        id: string;
        notes: string;
        purpose: string;
        startedAt: string;
        userId: string;
        userName: string;
    }
    validation?: { isValid: boolean; report: string }