(name: string, marketplace?: string)
| 63 | * @returns Plugin ID in format "name" or "name@marketplace" |
| 64 | */ |
| 65 | export function buildPluginId(name: string, marketplace?: string): string { |
| 66 | return marketplace ? `${name}@${marketplace}` : name |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Check if a marketplace name is an official (Anthropic-controlled) marketplace. |
nothing calls this directly
no outgoing calls
no test coverage detected