skills 1.0.4 → 1.0.5
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 +2 -14
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -45,9 +45,8 @@ ${BOLD}Usage:${RESET} skills <command> [options]
|
|
|
45
45
|
|
|
46
46
|
${BOLD}Commands:${RESET}
|
|
47
47
|
add <package> Add a skill package
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
search <query> Search for skills
|
|
48
|
+
e.g. vercel-labs/agent-skills
|
|
49
|
+
https://github.com/vercel-labs/agent-skills
|
|
51
50
|
|
|
52
51
|
${BOLD}Options:${RESET}
|
|
53
52
|
--help, -h Show this help message
|
|
@@ -55,8 +54,6 @@ ${BOLD}Options:${RESET}
|
|
|
55
54
|
|
|
56
55
|
${BOLD}Examples:${RESET}
|
|
57
56
|
${DIM}$${RESET} skills add vercel-labs/agent-skills
|
|
58
|
-
${DIM}$${RESET} skills list
|
|
59
|
-
${DIM}$${RESET} skills search "react"
|
|
60
57
|
`);
|
|
61
58
|
}
|
|
62
59
|
function runAddSkill(packages) {
|
|
@@ -93,15 +90,6 @@ function main() {
|
|
|
93
90
|
case "-v":
|
|
94
91
|
console.log("0.1.0");
|
|
95
92
|
break;
|
|
96
|
-
case "remove":
|
|
97
|
-
console.log(`${DIM}Removing skill:${RESET} ${restArgs[0] || "(no package specified)"}`);
|
|
98
|
-
break;
|
|
99
|
-
case "list":
|
|
100
|
-
console.log(`${DIM}No skills installed yet.${RESET}`);
|
|
101
|
-
break;
|
|
102
|
-
case "search":
|
|
103
|
-
console.log(`${DIM}Searching for:${RESET} ${restArgs[0] || "(no query specified)"}`);
|
|
104
|
-
break;
|
|
105
93
|
default:
|
|
106
94
|
console.log(`Unknown command: ${command}`);
|
|
107
95
|
console.log(`Run ${BOLD}skills --help${RESET} for usage.`);
|