AutoBE
    Preparing search index...

    Properties for identifying and accessing specific replay data.

    Defines the essential parameters needed to locate and retrieve replay data for a specific vibe coding session and development phase. These properties enable targeted access to replay information for analysis and review.

    interface IProps {
        phase: null | "analyze" | "prisma" | "interface" | "test" | "realize";
        project: string;
        vendor: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    phase: null | "analyze" | "prisma" | "interface" | "test" | "realize"

    Development phase to replay or analyze.

    Specifies which phase of the waterfall development process to focus on when retrieving or displaying replay data. Each phase represents a distinct stage in the automated backend development pipeline.

    project: string

    Project identifier for the replay session.

    Unique identifier or name that distinguishes this project's replay data from other sessions in the replay repository.

    vendor: string

    AI vendor identifier for the replay session.

    Specifies which AI service provider was used in the original vibe coding session, enabling vendor-specific replay analysis and comparison.