skilluse 0.4.0 → 0.4.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/dist/cli.js +3 -4
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -70335,7 +70335,7 @@ function Upgrade({ args: [skillName] }) {
|
|
|
70335
70335
|
// package.json
|
|
70336
70336
|
var package_default = {
|
|
70337
70337
|
name: "skilluse",
|
|
70338
|
-
version: "0.4.
|
|
70338
|
+
version: "0.4.1",
|
|
70339
70339
|
description: "CLI tool for managing and installing AI Coding Agent Skills",
|
|
70340
70340
|
main: "dist/cli.js",
|
|
70341
70341
|
bin: {
|
|
@@ -70414,10 +70414,9 @@ program2.name("skilluse").description("CLI tool for managing and installing AI C
|
|
|
70414
70414
|
console.log(`Built: ${BUILD_TIME}`);
|
|
70415
70415
|
process.exit(0);
|
|
70416
70416
|
});
|
|
70417
|
-
program2.command("login").description("Authenticate with GitHub").
|
|
70418
|
-
const options16 = options4.parse(opts);
|
|
70417
|
+
program2.command("login").description("Authenticate with GitHub").action(() => {
|
|
70419
70418
|
render_default(/* @__PURE__ */ jsx_dev_runtime23.jsxDEV(Login, {
|
|
70420
|
-
options:
|
|
70419
|
+
options: {}
|
|
70421
70420
|
}, undefined, false, undefined, this));
|
|
70422
70421
|
});
|
|
70423
70422
|
program2.command("logout").description("Clear stored credentials").action(() => {
|