@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.
package/dist/index.js CHANGED
@@ -5074,10 +5074,10 @@ function Ke(r, e) {
5074
5074
  function ds(r) {
5075
5075
  return {
5076
5076
  get_skill_content: Wt({
5077
- description: "根据技能名称或文档路径获取该技能的完整 Markdown 文档内容。传入 skillName(如 calculator)或 path(如 ./calculator/SKILL.md",
5077
+ description: "根据技能名称或文档路径获取该技能的完整文档内容。传入 skillName(如 calculator)或 path(如 ./calculator/SKILL.md)。支持 .md、.json、.xml 等各类文本格式文件。",
5078
5078
  inputSchema: ae.object({
5079
5079
  skillName: ae.string().optional().describe("技能名称,与目录名一致,如 calculator"),
5080
- path: ae.string().optional().describe("文档相对路径,如 ./calculator/SKILL.md 或 ./product-guide/reference/xxx.md")
5080
+ path: ae.string().optional().describe("文档相对路径,如 ./calculator/SKILL.md 或 ./product-guide/reference/xxx.json")
5081
5081
  }),
5082
5082
  execute: (t) => {
5083
5083
  const { skillName: s, path: n } = t;