@deskcreate/agentcraft
    Preparing search index...

    Variable GitHubSkillLoaderConst

    GitHubSkillLoader: {
        load(_config: GitHubSkillLoaderConfig): Promise<AgentSkill>;
        loadLocal(
            directory: string,
            trustOrOptions?:
                | "reviewed"
                | "untrusted"
                | "workspace"
                | "official"
                | LocalSkillLoaderOptions
                | undefined,
        ): Promise<AgentSkill>;
        loadManyLocal(directories: readonly string[]): Promise<AgentSkill[]>;
    } = ...

    Type Declaration

    • load: function
    • loadLocal: function
      • Parameters

        • directory: string
        • trustOrOptions:
              | "reviewed"
              | "untrusted"
              | "workspace"
              | "official"
              | LocalSkillLoaderOptions
              | undefined = "workspace"

        Returns Promise<AgentSkill>

    • loadManyLocal: function
      • Parameters

        • directories: readonly string[]

        Returns Promise<AgentSkill[]>