(command: PromptCommand)
| 933 | } |
| 934 | |
| 935 | function isOfficialMarketplaceSkill(command: PromptCommand): boolean { |
| 936 | if (command.source !== 'plugin' || !command.pluginInfo?.repository) { |
| 937 | return false |
| 938 | } |
| 939 | return isOfficialMarketplaceName( |
| 940 | parsePluginIdentifier(command.pluginInfo.repository).marketplace, |
| 941 | ) |
| 942 | } |
| 943 | |
| 944 | /** |
| 945 | * Extract URL scheme for telemetry. Defaults to 'gs' for unrecognized schemes |
no test coverage detected