Documentation
    Preparing search index...
    type CopilotSkill = {
        description: string;
        execute: (config: GenObj) => Promise<{ postExec?: string } | void>;
        function_name: string;
        json_schema: () => Promise<GenObj>;
        render_html: (config: GenObj) => Promise<string>;
        system_prompt: () => Promise<string>;
        title: string;
    }
    Index

    Properties

    description: string
    execute: (config: GenObj) => Promise<{ postExec?: string } | void>
    function_name: string
    json_schema: () => Promise<GenObj>
    render_html: (config: GenObj) => Promise<string>
    system_prompt: () => Promise<string>
    title: string