@plaud-ai/mcp 0.3.1 → 0.3.3
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/{chunk-4QBEOJPX.js → chunk-242FRP4P.js} +6 -1
- package/dist/chunk-D2JZW2TW.js +832 -0
- package/dist/{chunk-QJV4OLZI.js → chunk-LOGKF7DL.js} +1 -1
- package/dist/{chunk-QT25MKZJ.js → chunk-WR565PER.js} +24 -25
- package/dist/{chunk-XA77WLYF.js → chunk-XWDA3G2U.js} +15 -2
- package/dist/index.js +14 -15
- package/dist/{install-42GM4XUO.js → install-XCMWU6GQ.js} +36 -14
- package/dist/{server-KBYYESVJ.js → server-DDSU6DGR.js} +497 -26
- package/dist/{server-BOR5EZLF.js → server-NKCNUA6P.js} +0 -1
- package/dist/{setup-GLWZYNRW.js → setup-N55HQZFZ.js} +8 -9
- package/package.json +2 -1
- package/plugin.json +1 -1
- package/dist/chunk-MCKGQKYU.js +0 -15
- package/dist/chunk-R5G6UXSI.js +0 -20687
|
@@ -64,6 +64,7 @@ async function loadSkills() {
|
|
|
64
64
|
const version = typeof meta.version === "string" ? meta.version : "0.0.0";
|
|
65
65
|
skills.push({
|
|
66
66
|
name: skillName,
|
|
67
|
+
dir: name,
|
|
67
68
|
version,
|
|
68
69
|
description,
|
|
69
70
|
body: body.trimStart(),
|
|
@@ -81,12 +82,16 @@ async function loadSkills() {
|
|
|
81
82
|
cached = skills;
|
|
82
83
|
return cached;
|
|
83
84
|
}
|
|
85
|
+
function skillsSourceDir() {
|
|
86
|
+
return findSkillsDir();
|
|
87
|
+
}
|
|
84
88
|
async function skillsCombined() {
|
|
85
89
|
const skills = await loadSkills();
|
|
86
|
-
return skills.map((s) => s.content).join("\n\n
|
|
90
|
+
return skills.map((s) => s.content.trim()).join("\n\n");
|
|
87
91
|
}
|
|
88
92
|
|
|
89
93
|
export {
|
|
90
94
|
loadSkills,
|
|
95
|
+
skillsSourceDir,
|
|
91
96
|
skillsCombined
|
|
92
97
|
};
|