/** * Community tier: live GitHub search over the public `dsh-plugin` topic. * These results are outside the curated list — callers must label them so. * Unauthenticated search allows 10 req/min; a per-query cache keeps a local * tool well under that. */ export interface CommunityPlugin { name: string; owner: string; url: string; description: string; stars: number; pushed: string; install: string; } export declare function searchGitHub(query: string, limit?: number): Promise;