import type { AgentContext, StorageNamespace } from "../context"; export interface SkillMeta { name: string; description: string; platform?: string; } export interface SkillInput { path: string; data: string | Uint8Array; } export declare function parseSkillMeta(content: string): SkillMeta | null; export declare function addSkill(ns: StorageNamespace, ctx: AgentContext, files: SkillInput[]): Promise; export declare function removeSkill(ns: StorageNamespace, ctx: AgentContext, name: string): Promise; export declare function getInstalledSkills(ns: StorageNamespace): Promise; export declare function syncSkillsToVfs(ns: StorageNamespace, ctx: AgentContext): Promise; export declare function buildSkillsPromptSection(skills: SkillMeta[]): string; //# sourceMappingURL=index.d.ts.map