@opentiny/next-sdk 0.2.4 → 0.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,11 +33,11 @@ export declare function getSkillOverviews(modules: Record<string, string>): Skil
33
33
  */
34
34
  export declare function formatSkillsForSystemPrompt(skills: SkillMeta[]): string;
35
35
  /**
36
- * 获取所有已加载的 md 文件路径(含主 SKILL.md 与 reference 等)
36
+ * 获取所有已加载的技能文件路径(含主 SKILL.md 与 reference 下的 .md/.json/.xml 等)
37
37
  */
38
38
  export declare function getSkillMdPaths(modules: Record<string, string>): string[];
39
39
  /**
40
- * 根据相对路径获取某个 md 文档的原始内容
40
+ * 根据相对路径获取某个技能文档的原始内容(支持 .md、.json、.xml 等文本格式)
41
41
  */
42
42
  export declare function getSkillMdContent(modules: Record<string, string>, path: string): string | undefined;
43
43
  /**