skillfish 1.0.13 → 1.0.15
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/commands/add.js +2 -3
- package/package.json +3 -2
package/dist/commands/add.js
CHANGED
|
@@ -471,11 +471,10 @@ async function discoverSkillPaths(owner, repo, installAll, jsonMode, jsonOutput,
|
|
|
471
471
|
return { paths: [skill.dir], branch, sha };
|
|
472
472
|
}
|
|
473
473
|
// Build options for selection with frontmatter metadata
|
|
474
|
-
//
|
|
474
|
+
// No hints - @clack/prompts has rendering issues with long option lists
|
|
475
475
|
const optionsList = skills.map((skill) => ({
|
|
476
476
|
value: skill.dir,
|
|
477
|
-
label:
|
|
478
|
-
hint: skill.description ? truncate(skill.description, 70) : undefined,
|
|
477
|
+
label: toTitleCase(skill.name),
|
|
479
478
|
}));
|
|
480
479
|
// Non-TTY or JSON mode: require --all or --path for multiple skills
|
|
481
480
|
if (!isInputTTY() || jsonMode) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillfish",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.15",
|
|
4
|
+
"description": "All in one Skill manager for AI coding agents. Install, update, and sync Skills across Claude Code, Cursor, Copilot + more.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"skillfish": "dist/index.js"
|
|
@@ -83,6 +83,7 @@
|
|
|
83
83
|
"husky": "^9.1.7",
|
|
84
84
|
"lint-staged": "^16.2.7",
|
|
85
85
|
"prettier": "^3.8.1",
|
|
86
|
+
"tsx": "^4.21.0",
|
|
86
87
|
"typescript": "^5.4.0",
|
|
87
88
|
"typescript-eslint": "^8.53.1",
|
|
88
89
|
"vitest": "^4.0.17"
|