/** * synap discover * * Runtime discovery for AI agents: fetches ground-truth entity profiles * (with property schemas) and the canonical CLI command tree from the pod. * * Replaces static skill file profile descriptions — agents call this once * per session to get current schema including any custom workspace profiles. */ export interface DiscoverOpts { podUrl?: string; apiKey?: string; workspace?: string; json?: boolean; profiles?: boolean; commands?: boolean; summary?: boolean; profileSlugs?: string; } export declare function discover(opts: DiscoverOpts): Promise;