skilluse 0.1.8 → 0.1.9
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 +19 -26
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -64753,7 +64753,7 @@ function Table({
|
|
|
64753
64753
|
const truncate = (str, maxLen) => {
|
|
64754
64754
|
if (str.length <= maxLen)
|
|
64755
64755
|
return str;
|
|
64756
|
-
return `${str.slice(0, maxLen -
|
|
64756
|
+
return `${str.slice(0, maxLen - 1)}…`;
|
|
64757
64757
|
};
|
|
64758
64758
|
const renderCell = (value, width, isHeader = false) => {
|
|
64759
64759
|
const str = value == null ? "" : String(value);
|
|
@@ -64768,7 +64768,7 @@ function Table({
|
|
|
64768
64768
|
};
|
|
64769
64769
|
const separator = /* @__PURE__ */ jsx_dev_runtime6.jsxDEV(Box_default, {
|
|
64770
64770
|
children: /* @__PURE__ */ jsx_dev_runtime6.jsxDEV(Text, {
|
|
64771
|
-
children: widths.map((w, i) => "
|
|
64771
|
+
children: widths.map((w, i) => "─".repeat(w) + (i < widths.length - 1 ? "─┼─" : "")).join("")
|
|
64772
64772
|
}, undefined, false, undefined, this)
|
|
64773
64773
|
}, undefined, false, undefined, this);
|
|
64774
64774
|
return /* @__PURE__ */ jsx_dev_runtime6.jsxDEV(Box_default, {
|
|
@@ -64779,7 +64779,7 @@ function Table({
|
|
|
64779
64779
|
children: [
|
|
64780
64780
|
renderCell(String(col), widths[i], true),
|
|
64781
64781
|
i < cols.length - 1 && /* @__PURE__ */ jsx_dev_runtime6.jsxDEV(Text, {
|
|
64782
|
-
children: "
|
|
64782
|
+
children: " │ "
|
|
64783
64783
|
}, undefined, false, undefined, this)
|
|
64784
64784
|
]
|
|
64785
64785
|
}, String(col), true, undefined, this))
|
|
@@ -64790,7 +64790,7 @@ function Table({
|
|
|
64790
64790
|
children: [
|
|
64791
64791
|
renderCell(row[col], widths[i]),
|
|
64792
64792
|
i < cols.length - 1 && /* @__PURE__ */ jsx_dev_runtime6.jsxDEV(Text, {
|
|
64793
|
-
children: "
|
|
64793
|
+
children: " │ "
|
|
64794
64794
|
}, undefined, false, undefined, this)
|
|
64795
64795
|
]
|
|
64796
64796
|
}, String(col), true, undefined, this))
|
|
@@ -66499,7 +66499,7 @@ import { join } from "node:path";
|
|
|
66499
66499
|
var AGENTS = {
|
|
66500
66500
|
claude: {
|
|
66501
66501
|
id: "claude",
|
|
66502
|
-
name: "Claude
|
|
66502
|
+
name: "Claude",
|
|
66503
66503
|
description: "Anthropic Claude Code CLI",
|
|
66504
66504
|
localPath: ".claude/skills",
|
|
66505
66505
|
globalPath: join(homedir2(), ".claude/skills")
|
|
@@ -66511,17 +66511,10 @@ var AGENTS = {
|
|
|
66511
66511
|
localPath: ".cursor/skills",
|
|
66512
66512
|
globalPath: ".cursor/skills"
|
|
66513
66513
|
},
|
|
66514
|
-
amp: {
|
|
66515
|
-
id: "amp",
|
|
66516
|
-
name: "Amp",
|
|
66517
|
-
description: "Sourcegraph Amp CLI",
|
|
66518
|
-
localPath: ".amp/skills",
|
|
66519
|
-
globalPath: join(homedir2(), ".amp/skills")
|
|
66520
|
-
},
|
|
66521
66514
|
vscode: {
|
|
66522
66515
|
id: "vscode",
|
|
66523
|
-
name: "
|
|
66524
|
-
description: "
|
|
66516
|
+
name: "VSCode",
|
|
66517
|
+
description: "VS Code with GitHub Copilot",
|
|
66525
66518
|
localPath: ".github/skills",
|
|
66526
66519
|
globalPath: ".github/skills"
|
|
66527
66520
|
},
|
|
@@ -66532,13 +66525,6 @@ var AGENTS = {
|
|
|
66532
66525
|
localPath: ".goose/skills",
|
|
66533
66526
|
globalPath: join(homedir2(), ".config/goose/skills")
|
|
66534
66527
|
},
|
|
66535
|
-
opencode: {
|
|
66536
|
-
id: "opencode",
|
|
66537
|
-
name: "OpenCode",
|
|
66538
|
-
description: "OpenCode CLI",
|
|
66539
|
-
localPath: ".opencode/skills",
|
|
66540
|
-
globalPath: join(homedir2(), ".opencode/skills")
|
|
66541
|
-
},
|
|
66542
66528
|
codex: {
|
|
66543
66529
|
id: "codex",
|
|
66544
66530
|
name: "Codex",
|
|
@@ -66546,6 +66532,13 @@ var AGENTS = {
|
|
|
66546
66532
|
localPath: ".codex/skills",
|
|
66547
66533
|
globalPath: join(homedir2(), ".codex/skills")
|
|
66548
66534
|
},
|
|
66535
|
+
opencode: {
|
|
66536
|
+
id: "opencode",
|
|
66537
|
+
name: "OpenCode",
|
|
66538
|
+
description: "OpenCode CLI",
|
|
66539
|
+
localPath: ".opencode/skills",
|
|
66540
|
+
globalPath: join(homedir2(), ".opencode/skills")
|
|
66541
|
+
},
|
|
66549
66542
|
letta: {
|
|
66550
66543
|
id: "letta",
|
|
66551
66544
|
name: "Letta",
|
|
@@ -66553,10 +66546,10 @@ var AGENTS = {
|
|
|
66553
66546
|
localPath: ".letta/skills",
|
|
66554
66547
|
globalPath: join(homedir2(), ".letta/skills")
|
|
66555
66548
|
},
|
|
66556
|
-
|
|
66557
|
-
id: "
|
|
66558
|
-
name: "
|
|
66559
|
-
description: "Portable agent-agnostic skills
|
|
66549
|
+
other: {
|
|
66550
|
+
id: "other",
|
|
66551
|
+
name: "Other",
|
|
66552
|
+
description: "Portable agent-agnostic skills",
|
|
66560
66553
|
localPath: ".skills",
|
|
66561
66554
|
globalPath: ".skills"
|
|
66562
66555
|
}
|
|
@@ -70425,7 +70418,7 @@ function Upgrade({ args: [skillName] }) {
|
|
|
70425
70418
|
// package.json
|
|
70426
70419
|
var package_default = {
|
|
70427
70420
|
name: "skilluse",
|
|
70428
|
-
version: "0.1.
|
|
70421
|
+
version: "0.1.9",
|
|
70429
70422
|
description: "CLI tool for managing and installing AI Coding Agent Skills",
|
|
70430
70423
|
main: "dist/cli.js",
|
|
70431
70424
|
bin: {
|