技能备份 - 2026-04-15 (40个技能)

This commit is contained in:
root
2026-04-15 18:53:15 +08:00
parent f62f14814f
commit c65fce24e4
791 changed files with 190773 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
function loadFeishuClient() {
try {
return require("../../feishu-common/index.js");
} catch (err) {
const depErr = new Error(
"Missing dependency: feishu-common. Install feishu-common skill first, then retry.",
);
depErr.cause = err;
throw depErr;
}
}
module.exports = loadFeishuClient();