@deskcreate/agentcraft
    Preparing search index...

    Interface AssemblyOptions

    interface AssemblyOptions {
        allowOutsideRoot?: boolean;
        config?: Record<string, unknown>;
        content?: string;
        file?: string;
        logStats?: boolean;
        maxPartialDepth?: number;
        measureTokens?: boolean;
        minify?: boolean;
        mode: AssemblyMode;
        rootDir?: string;
        strict?: boolean;
        vars?: Record<string, unknown>;
    }
    Index

    Properties

    allowOutsideRoot?: boolean

    Allows {{include ...}} directives to resolve outside rootDir. Keep false for untrusted prompt sources.

    config?: Record<string, unknown>
    content?: string
    file?: string
    logStats?: boolean
    maxPartialDepth?: number
    measureTokens?: boolean
    minify?: boolean
    rootDir?: string

    Directory boundary for file and partial reads. Defaults to the prompt file's directory, prompt dir, or process.cwd() for inline prompts.

    strict?: boolean
    vars?: Record<string, unknown>

    Runtime {{var}} replacements. Arrays are formatted as markdown bullet lists.