@opentiny/next-sdk 0.2.5 → 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.es.dev.js +179 -134
- package/dist/index.es.js +8721 -8688
- package/dist/index.js +2 -2
- package/dist/index.umd.dev.js +179 -134
- package/dist/index.umd.js +53 -53
- package/dist/skills/index.d.ts +2 -2
- package/dist/webagent.dev.js +177 -132
- package/dist/webagent.es.dev.js +177 -132
- package/dist/webagent.es.js +8253 -8220
- package/dist/webagent.js +51 -51
- package/package.json +1 -1
- package/skills/index.ts +4 -4
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: "
|
|
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.
|
|
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;
|