| 46 | } |
| 47 | |
| 48 | export interface MarketplaceProvider { |
| 49 | getCapability(): Promise<{ mode: string; canSearch: boolean; canInstall: boolean; reason?: string }>; |
| 50 | search(params: MarketplaceSearchParams): Promise<MarketplaceSkillResult[]>; |
| 51 | install(params: MarketplaceInstallParams): Promise<void>; |
| 52 | } |
| 53 | |
| 54 | export class ClawHubService { |
| 55 | private workDir: string; |
no outgoing calls
no test coverage detected