evalution
    Preparing search index...

    Interface ParsedFilePrompt

    A ParsedPrompt produced by the file-based parser, with FilePromptMetadata guaranteed to be present on metadata.

    This is the low-level form emitted by PromptFileType.parsePrompts; FilePromptProvider converts it to a NormalizedFilePrompt before exposing it publicly.

    interface ParsedFilePrompt {
        extractedProps: ExtractedProps;
        functionParameters: PropDefinition[];
        globalId?: string;
        id: string;
        metadata: FilePromptMetadata;
        name: string;
        providerId?: string;
        treePath?: string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    extractedProps: ExtractedProps
    functionParameters: PropDefinition[]
    globalId?: string

    Author-supplied stable alias for this prompt, globally unique across providers. Survives file moves/renames and is registered in the prompt registry so runtime traces can resolve back to this prompt.

    id: string
    name: string
    providerId?: string
    treePath?: string[]