@mcp-s/skills 1.0.5 → 1.3.1
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/README.md +399 -96
- package/ThirdPartyNoticeText.txt +171 -0
- package/bin/cli.mjs +14 -0
- package/dist/_chunks/libs/@clack/core.mjs +767 -0
- package/dist/_chunks/libs/@clack/prompts.mjs +275 -0
- package/dist/_chunks/libs/@kwsites/file-exists.mjs +562 -0
- package/dist/_chunks/libs/@kwsites/promise-deferred.mjs +37 -0
- package/dist/_chunks/libs/bluebird.mjs +4141 -0
- package/dist/_chunks/libs/core-util-is.mjs +65 -0
- package/dist/_chunks/libs/duplexer2.mjs +1726 -0
- package/dist/_chunks/libs/esprima.mjs +5338 -0
- package/dist/_chunks/libs/extend-shallow.mjs +31 -0
- package/dist/_chunks/libs/fs-extra.mjs +1801 -0
- package/dist/_chunks/libs/gray-matter.mjs +2596 -0
- package/dist/_chunks/libs/node-int64.mjs +103 -0
- package/dist/_chunks/libs/simple-git.mjs +3584 -0
- package/dist/_chunks/libs/unzipper.mjs +945 -0
- package/dist/_chunks/libs/xdg-basedir.mjs +14 -0
- package/dist/_chunks/rolldown-runtime.mjs +24 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.mjs +4258 -0
- package/package.json +85 -27
- package/dist/agents.js +0 -246
- package/dist/api.js +0 -98
- package/dist/auth.js +0 -117
- package/dist/index.js +0 -495
- package/dist/installer.js +0 -231
- package/dist/types.js +0 -1
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { t as __commonJSMin } from "../rolldown-runtime.mjs";
|
|
2
|
+
/*!
|
|
3
|
+
* is-extendable <https://github.com/jonschlinkert/is-extendable>
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) 2015, Jon Schlinkert.
|
|
6
|
+
* Licensed under the MIT License.
|
|
7
|
+
*/
|
|
8
|
+
var require_is_extendable = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
9
|
+
module.exports = function isExtendable(val) {
|
|
10
|
+
return typeof val !== "undefined" && val !== null && (typeof val === "object" || typeof val === "function");
|
|
11
|
+
};
|
|
12
|
+
}));
|
|
13
|
+
var require_extend_shallow = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
14
|
+
var isObject = require_is_extendable();
|
|
15
|
+
module.exports = function extend(o) {
|
|
16
|
+
if (!isObject(o)) o = {};
|
|
17
|
+
var len = arguments.length;
|
|
18
|
+
for (var i = 1; i < len; i++) {
|
|
19
|
+
var obj = arguments[i];
|
|
20
|
+
if (isObject(obj)) assign(o, obj);
|
|
21
|
+
}
|
|
22
|
+
return o;
|
|
23
|
+
};
|
|
24
|
+
function assign(a, b) {
|
|
25
|
+
for (var key in b) if (hasOwn(b, key)) a[key] = b[key];
|
|
26
|
+
}
|
|
27
|
+
function hasOwn(obj, key) {
|
|
28
|
+
return Object.prototype.hasOwnProperty.call(obj, key);
|
|
29
|
+
}
|
|
30
|
+
}));
|
|
31
|
+
export { require_extend_shallow as t };
|