Briyah SDK - v2.0.6
    Preparing search index...

    Interface PackView

    A pack and this user's relationship to it.

    interface PackView {
        agents: PackAgentTemplate[];
        description?: string;
        dir: string;
        documentCount: number;
        enabled: boolean;
        missingPacks: string[];
        missingTools: string[];
        name: string;
        origin: PackOrigin;
        promptFolders: string[];
        requiresPacks: string[];
        requiresTools: string[];
        rooms: PackRoomTemplate[];
        table?: PackTable;
        title: string;
        version?: string;
    }

    Hierarchy (View Summary)

    Index
    description?: string
    dir: string

    Where it lives.

    documentCount: number

    Documents its artifacts/manifest.json ships.

    enabled: boolean
    missingPacks: string[]

    Packs it names in requiresPacks that this user does not have enabled.

    missingTools: string[]

    Tool names the pack wants that the process has not registered.

    name: string
    origin: PackOrigin

    Installed by the host, or created by this user.

    promptFolders: string[]
    requiresPacks: string[]
    requiresTools: string[]

    Tool names the pack's grants and manifest between them ask for.

    table?: PackTable

    How the RPG page plays it, when the pack says. Absent for a pack that is not a game.

    title: string
    version?: string