momo-ai 1.0.68 → 1.0.69

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "momo-ai",
3
- "version": "1.0.68",
3
+ "version": "1.0.69",
4
4
  "description": "Rachel Momo ( OpenSpec )",
5
5
  "main": "src/momo.js",
6
6
  "bin": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "repositories": [
3
3
  {
4
- "name": "anthropics",
4
+ "name": "anthropic",
5
5
  "description": "Anthropic 官方技能仓库",
6
6
  "url": "https://github.com/anthropics/skills.git",
7
7
  "skillsPath": "skills"
@@ -13,10 +13,40 @@
13
13
  "skillsPath": "skills"
14
14
  },
15
15
  {
16
- "name":"superpowers",
16
+ "name": "superpowers",
17
17
  "description": "Superpowers AI 官方技能仓库",
18
18
  "url": "https://github.com/obra/superpowers.git",
19
19
  "skillsPath": "skills"
20
+ },
21
+ {
22
+ "name": "ecc",
23
+ "description": "Everything Claude Code 技能仓库",
24
+ "url": "https://github.com/affaan-m/everything-claude-code.git",
25
+ "skillsPath": "skills"
26
+ },
27
+ {
28
+ "name": "fullstack",
29
+ "description": "65个全栈开发专用技能集",
30
+ "url": "https://github.com/Jeffallan/claude-skills.git",
31
+ "skillsPath": "skills"
32
+ },
33
+ {
34
+ "name": "volt",
35
+ "description": "VoltAgent 精选技能集合",
36
+ "url": "https://github.com/VoltAgent/awesome-claude-skills.git",
37
+ "skillsPath": "skills"
38
+ },
39
+ {
40
+ "name": "travisvn",
41
+ "description": "Awesome Claude Skills 精选列表",
42
+ "url": "https://github.com/travisvn/awesome-claude-skills.git",
43
+ "skillsPath": "skills"
44
+ },
45
+ {
46
+ "name": "community",
47
+ "description": "社区精选技能集合",
48
+ "url": "https://github.com/abubakarsiddik31/claude-skills-collection.git",
49
+ "skillsPath": "skills"
20
50
  }
21
51
  ]
22
52
  }
@@ -506,7 +506,7 @@ const _selectRepository = async (repositories, remoteValue) => {
506
506
  // 显示仓库选择菜单
507
507
  const menuItems = repositories.map(repo => ({
508
508
  name: repo.name,
509
- description: `${repo.description || ''} - ${repo.url}`,
509
+ description: `${repo.url} - ${repo.description || ''}`,
510
510
  repo: repo // 保存原始仓库对象的引用
511
511
  }));
512
512