eskill 1.0.15 → 1.0.16

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/lib/search.js +4 -2
  2. package/package.json +1 -1
package/lib/search.js CHANGED
@@ -96,8 +96,10 @@ export function formatSkillList(skills, showIndex = true) {
96
96
  output += ` Stars: ⭐ ${skill.stars}\n`;
97
97
  }
98
98
 
99
- if (skill.url || skill.github_url) {
100
- output += ` ${skill.url || skill.github_url}\n`;
99
+ // 显示 GitHub URL(支持多种字段名)
100
+ const githubUrl = skill.githubUrl || skill.github_url || skill.url;
101
+ if (githubUrl) {
102
+ output += ` ${githubUrl}\n`;
101
103
  }
102
104
 
103
105
  output += '\n';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eskill",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "Unified AI Agent Skills Management - Install skills from Git URLs",
5
5
  "main": "index.js",
6
6
  "type": "module",