}
function makeAgentCustomization(resource: INamedPluginResource): AgentCustomization {
pluginParsers.ts
const uri = resource.uri.toString();
return {
type: CustomizationType.Agent,
id: buildChildId(resource.uri),
uri,
name: resource.name,
...(resource.description ? { description: resource.description } : {}),
};
}
function makeSkillCustomization(resource: INamedPluginResource): SkillCustomization {