Theia API Documentation v1.66.0
    Preparing search index...

    Represents a customized prompt fragment with an assigned customization ID and priority.

    interface CustomizedPromptFragment {
        commandAgents?: string[];
        commandArgumentHint?: string;
        commandDescription?: string;
        commandName?: string;
        customizationId: string;
        id: string;
        isCommand?: boolean;
        priority: number;
        template: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    commandAgents?: string[]

    List of agent IDs this command is available for (undefined means available for all agents)

    commandArgumentHint?: string

    Hint for command arguments shown in autocomplete detail (e.g., "", "[options]")

    commandDescription?: string

    Description shown in command autocomplete

    commandName?: string

    Display name for the command (defaults to fragment id if not specified)

    customizationId: string

    Unique identifier for this customization

    id: string

    Unique identifier for this prompt fragment

    isCommand?: boolean

    Mark this template as available as a slash command

    priority: number

    The order/priority of this customization, higher values indicate higher priority when multiple customizations exist for the same fragment

    template: string

    The template content, which may contain variables and function references