skills 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/dist/cli.js +10 -10
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -4,8 +4,8 @@
4
4
  import { spawn } from "child_process";
5
5
  var RESET = "\x1B[0m";
6
6
  var BOLD = "\x1B[1m";
7
- var DIM = "\x1B[2m";
8
- var WHITE = "\x1B[97m";
7
+ var DIM = "\x1B[38;5;102m";
8
+ var TEXT = "\x1B[38;5;145m";
9
9
  var LOGO_LINES = [
10
10
  "███████╗██╗ ██╗██╗██╗ ██╗ ███████╗",
11
11
  "██╔════╝██║ ██╔╝██║██║ ██║ ██╔════╝",
@@ -15,12 +15,12 @@ var LOGO_LINES = [
15
15
  "╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝╚══════╝"
16
16
  ];
17
17
  var GRAYS = [
18
- "\x1B[97m",
19
- "\x1B[97m",
20
- "\x1B[37m",
21
- "\x1B[37m",
22
- "\x1B[90m",
23
- "\x1B[90m"
18
+ "\x1B[38;5;250m",
19
+ "\x1B[38;5;248m",
20
+ "\x1B[38;5;245m",
21
+ "\x1B[38;5;243m",
22
+ "\x1B[38;5;240m",
23
+ "\x1B[38;5;238m"
24
24
  ];
25
25
  function showLogo() {
26
26
  console.log();
@@ -33,8 +33,8 @@ function showBanner() {
33
33
  console.log();
34
34
  console.log(`${DIM}The open agent skills ecosystem${RESET}`);
35
35
  console.log();
36
- console.log(` ${DIM}$${RESET} ${WHITE}npx skills --help${RESET}`);
37
- console.log(` ${DIM}$${RESET} ${WHITE}npx skills add ${DIM}[package]${RESET}`);
36
+ console.log(` ${DIM}$${RESET} ${TEXT}npx skills --help${RESET}`);
37
+ console.log(` ${DIM}$${RESET} ${TEXT}npx skills add ${DIM}[package]${RESET}`);
38
38
  console.log();
39
39
  console.log(`${DIM}try:${RESET} npx skills add vercel-labs/agent-skills`);
40
40
  console.log();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skills",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "The open agent skills ecosystem",
5
5
  "type": "module",
6
6
  "bin": {