@bud-fe/skills 0.0.1 → 0.0.2
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/cli.mjs +5 -5
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -19,7 +19,7 @@ import { access, cp, lstat, mkdir, mkdtemp, readFile, readdir, readlink, realpat
|
|
|
19
19
|
import * as readline from "readline";
|
|
20
20
|
import { Writable } from "stream";
|
|
21
21
|
var import_picocolors = /* @__PURE__ */ __toESM(require_picocolors(), 1);
|
|
22
|
-
var version$1 = "0.0.
|
|
22
|
+
var version$1 = "0.0.2";
|
|
23
23
|
const home = homedir();
|
|
24
24
|
const configHome = xdgConfig ?? join(home, ".config");
|
|
25
25
|
const codexHome = process.env.CODEX_HOME?.trim() || join(home, ".codex");
|
|
@@ -3642,13 +3642,13 @@ async function runAddCommand(args, options = {}) {
|
|
|
3642
3642
|
const modeChoice = await ve({
|
|
3643
3643
|
message: "Installation method",
|
|
3644
3644
|
options: [{
|
|
3645
|
-
value: "symlink",
|
|
3646
|
-
label: "Symlink (Recommended)",
|
|
3647
|
-
hint: "Single source of truth, easy updates"
|
|
3648
|
-
}, {
|
|
3649
3645
|
value: "copy",
|
|
3650
3646
|
label: "Copy to all agents",
|
|
3651
3647
|
hint: "Independent copies for each agent"
|
|
3648
|
+
}, {
|
|
3649
|
+
value: "symlink",
|
|
3650
|
+
label: "Symlink (Cline, Kilo Code not supported)",
|
|
3651
|
+
hint: "Single source of truth, easy updates"
|
|
3652
3652
|
}]
|
|
3653
3653
|
});
|
|
3654
3654
|
if (pD(modeChoice)) {
|