skills 1.0.1 → 1.0.3

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 CHANGED
@@ -27,5 +27,5 @@ npx skills
27
27
  ## Example
28
28
 
29
29
  ```bash
30
- npx skills add vercel-labs/react-skills
30
+ npx skills add vercel-labs/agent-skills
31
31
  ```
package/dist/cli.js CHANGED
@@ -36,7 +36,7 @@ function showBanner() {
36
36
  console.log(` ${DIM}$${RESET} ${WHITE}npx skills --help${RESET}`);
37
37
  console.log(` ${DIM}$${RESET} ${WHITE}npx skills add ${DIM}[package]${RESET}`);
38
38
  console.log();
39
- console.log(`${DIM}try:${RESET} npx skills add vercel-labs/react-skills`);
39
+ console.log(`${DIM}try:${RESET} npx skills add vercel-labs/agent-skills`);
40
40
  console.log();
41
41
  }
42
42
  function showHelp() {
@@ -54,13 +54,13 @@ ${BOLD}Options:${RESET}
54
54
  --version, -v Show version number
55
55
 
56
56
  ${BOLD}Examples:${RESET}
57
- ${DIM}$${RESET} skills add vercel-labs/react-skills
57
+ ${DIM}$${RESET} skills add vercel-labs/agent-skills
58
58
  ${DIM}$${RESET} skills list
59
59
  ${DIM}$${RESET} skills search "react"
60
60
  `);
61
61
  }
62
62
  function runAddSkill(packages) {
63
- const child = spawn("npx", ["add-skill", ...packages], {
63
+ const child = spawn("npx", ["-y", "add-skill", ...packages], {
64
64
  stdio: "inherit"
65
65
  });
66
66
  child.on("close", (code) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skills",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "The open agent skills ecosystem",
5
5
  "type": "module",
6
6
  "bin": {
@@ -15,7 +15,12 @@
15
15
  "dev": "bun run ./src/cli.ts",
16
16
  "prepublishOnly": "bun run build"
17
17
  },
18
- "keywords": ["ai", "skills", "cli", "ecosystem"],
18
+ "keywords": [
19
+ "ai",
20
+ "skills",
21
+ "cli",
22
+ "ecosystem"
23
+ ],
19
24
  "license": "MIT",
20
25
  "devDependencies": {
21
26
  "@types/bun": "latest"