/** * synap skill — skill knowledge base commands * * Manage agent skills stored in the pod's agent_skills table. * Skills are structured knowledge packages shared across all agents. * * Commands: * synap skill suggest Search skills by topic/query * synap skill get Fetch a single skill by slug * synap skill sync [--from] Bulk import skills from local disk */ interface SkillOpts { podUrl?: string; apiKey?: string; } export declare function suggestSkills(topic: string, opts: SkillOpts): Promise; export declare function getSkill(slug: string, opts: SkillOpts): Promise; /** * Sync skill files from local disk into the pod's agent_skills table. * Default source: ~/.claude/skills/ — each subdirectory with a SKILL.md * becomes one agent_skill row. Slug = directory name. */ export declare function syncSkills(opts: SkillOpts & { from?: string; }): Promise; export {};