Skip to content

Commit b4e7326

Browse files
committed
docs: remove SkillsMP references (feature not supported)
1 parent 21e631d commit b4e7326

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ ASK comes pre-configured with trusted sources:
132132
| **MATLAB** | Official [matlab/skills](https://github.com/matlab/skills) |
133133
| **Superpowers** | [obra/superpowers](https://github.com/obra/superpowers) core library |
134134
| **Composio** | [ComposioHQ/awesome-claude-skills](https://github.com/ComposioHQ/awesome-claude-skills) collection |
135+
| **Vercel** | [vercel-labs/agent-skills](https://github.com/vercel-labs/agent-skills) AI SDK skills |
135136

136137
## 📂 Installation Layout
137138

README_zh.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ ASK 默认内置了以下受信源:
135135
| **MATLAB** | 官方库 [matlab/skills](https://github.com/matlab/skills) |
136136
| **Superpowers** | 核心库 [obra/superpowers](https://github.com/obra/superpowers) |
137137
| **Composio** | 精选集 [ComposioHQ/awesome-claude-skills](https://github.com/ComposioHQ/awesome-claude-skills) |
138+
| **Vercel** | AI SDK [vercel-labs/agent-skills](https://github.com/vercel-labs/agent-skills) |
138139

139140
## 📂 目录结构
140141

SPEC.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ repos:
100100
|------|-----|------|
101101
| OpenAI Skills | `openai/skills/skills` | OpenAI Codex 官方技能 |
102102
| GitHub Copilot | `github/awesome-copilot/skills` | GitHub Copilot 技能 |
103-
| SkillsMP | skillsmp.com | 技能市场(需API) |
104103

105104
---
106105

internal/config/config.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,11 @@ func DefaultConfig() Config {
161161
Type: "dir",
162162
URL: "ComposioHQ/awesome-claude-skills",
163163
},
164+
{
165+
Name: "vercel",
166+
Type: "dir",
167+
URL: "vercel-labs/agent-skills",
168+
},
164169
},
165170
}
166171
}

internal/config/config_test.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ func TestDefaultConfig(t *testing.T) {
1414
if len(config.Skills) != 0 {
1515
t.Errorf("Expected empty skills list, got %d", len(config.Skills))
1616
}
17-
// We now have 7 default repos: community, anthropics, scientific, superpowers, openai, matlab, composio
18-
if len(config.Repos) != 7 {
19-
t.Errorf("Expected 7 default repos, got %d", len(config.Repos))
17+
// We now have 8 default repos: community, anthropics, scientific, superpowers, openai, matlab, composio, vercel
18+
if len(config.Repos) != 8 {
19+
t.Errorf("Expected 8 default repos, got %d", len(config.Repos))
2020
}
2121
}
2222

@@ -33,7 +33,8 @@ func TestDefaultReposConfiguration(t *testing.T) {
3333
"superpowers": {repoType: "dir", url: "obra/superpowers/skills"},
3434
"openai": {repoType: "dir", url: "openai/skills/skills"},
3535
"matlab": {repoType: "dir", url: "matlab/skills/skills"},
36-
"composio": {repoType: "dir", url: "composio/skills/skills"},
36+
"composio": {repoType: "dir", url: "ComposioHQ/awesome-claude-skills"},
37+
"vercel": {repoType: "dir", url: "vercel-labs/agent-skills"},
3738
}
3839

3940
for _, repo := range config.Repos {

0 commit comments

Comments
 (0)