Skip to content

Commit 10089d2

Browse files
committed
fix: remove mcp-servers from default repos (not skill format)
1 parent 5acccd6 commit 10089d2

File tree

8 files changed

+6
-24
lines changed

8 files changed

+6
-24
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ ASK searches these sources by default:
167167
|--------|------|-------------|
168168
| **Community** | topic | GitHub repos with `agent-skill` topic |
169169
| **Anthropics** | dir | Official [anthropics/skills](https://github.com/anthropics/skills) |
170-
| **MCP-Servers** | dir | [modelcontextprotocol/servers](https://github.com/modelcontextprotocol/servers) |
171170
| **Scientific** | dir | Research skills from [K-Dense-AI](https://github.com/K-Dense-AI/claude-scientific-skills) |
172171
| **Superpowers** | dir | Core skills from [obra/superpowers](https://github.com/obra/superpowers) |
173172
| **OpenAI** | dir | Codex skills from [openai/skills](https://github.com/openai/skills) |

README_zh.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ ASK 默认搜索以下来源:
140140
|------|------|------|
141141
| **Community** | topic | 带有 `agent-skill` 主题的 GitHub 仓库 |
142142
| **Anthropics** | dir | 官方 [anthropics/skills](https://github.com/anthropics/skills) |
143-
| **MCP-Servers** | dir | [modelcontextprotocol/servers](https://github.com/modelcontextprotocol/servers) |
144143
| **Scientific** | dir | [K-Dense-AI](https://github.com/K-Dense-AI/claude-scientific-skills) 科研技能 |
145144
| **Superpowers** | dir | [obra/superpowers](https://github.com/obra/superpowers) 核心技能 |
146145
| **OpenAI** | dir | [openai/skills](https://github.com/openai/skills) Codex 技能 |

SPEC.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,6 @@ repos:
8080
- name: anthropics
8181
type: dir
8282
url: https://github.com/anthropics/skills/tree/main/skills
83-
- name: mcp-servers
84-
type: dir
85-
url: https://github.com/modelcontextprotocol/servers/tree/main/src
8683
- name: scientific
8784
type: dir
8885
url: https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills

docs/architecture.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,9 @@ graph TB
312312
Topic --> T1[community:<br/>agent-skill topic]
313313
314314
Dir --> D1[anthropics:<br/>skills/]
315-
Dir --> D2[mcp-servers:<br/>src/]
316-
Dir --> D3[scientific:<br/>claude-scientific-skills]
317-
Dir --> D4[superpowers:<br/>superpowers/skills]
318-
Dir --> D5[openai:<br/>skills/]
315+
Dir --> D2[scientific:<br/>claude-scientific-skills]
316+
Dir --> D3[superpowers:<br/>superpowers/skills]
317+
Dir --> D4[openai:<br/>skills/]
319318
320319
style Topic fill:#ffd93d
321320
style Dir fill:#90ee90

docs/configuration.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ repos:
3535
- name: anthropics
3636
type: dir
3737
url: https://github.com/anthropics/skills/tree/main/skills
38-
- name: mcp-servers
39-
type: dir
40-
url: https://github.com/modelcontextprotocol/servers/tree/main/src
4138
- name: scientific
4239
type: dir
4340
url: https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills
@@ -123,7 +120,6 @@ ASK automatically includes these sources, even if not in your `ask.yaml`:
123120
|------|------|-----|
124121
| `community` | topic | `agent-skill` |
125122
| `anthropics` | dir | `https://github.com/anthropics/skills/tree/main/skills` |
126-
| `mcp-servers` | dir | `https://github.com/modelcontextprotocol/servers/tree/main/src` |
127123
| `scientific` | dir | `https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills` |
128124
| `superpowers` | dir | `https://github.com/obra/superpowers/tree/main/skills` |
129125
| `openai` | dir | `https://github.com/openai/skills/tree/main/skills` |

docs/skill-sources.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@ ASK can search and install skills from multiple sources. This document explains
66

77
## Default Sources
88

9-
ASK comes with six pre-configured sources:
9+
ASK comes with five pre-configured sources:
1010

1111
| Name | Type | URL | Description |
1212
|------|------|-----|-------------|
1313
| `community` | topic | `agent-skill` | GitHub repos with the `agent-skill` topic |
1414
| `anthropics` | dir | `https://github.com/anthropics/skills/tree/main/skills` | Official Anthropic skills |
15-
| `mcp-servers` | dir | `https://github.com/modelcontextprotocol/servers/tree/main/src` | MCP server implementations |
1615
| `scientific` | dir | `https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills` | Scientific research skills |
1716
| `superpowers` | dir | `https://github.com/obra/superpowers/tree/main/skills` | Core skills library |
1817
| `openai` | dir | `https://github.com/openai/skills/tree/main/skills` | Codex skills catalog |

internal/config/config.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,6 @@ func DefaultConfig() Config {
136136
Type: "dir",
137137
URL: "anthropics/skills/skills",
138138
},
139-
{
140-
Name: "mcp-servers",
141-
Type: "dir",
142-
URL: "modelcontextprotocol/servers/src",
143-
},
144139
{
145140
Name: "scientific",
146141
Type: "dir",

internal/config/config_test.go

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,20 @@ 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-
if len(config.Repos) != 6 {
18-
t.Errorf("Expected 6 default repos, got %d", len(config.Repos))
17+
if len(config.Repos) != 5 {
18+
t.Errorf("Expected 5 default repos, got %d", len(config.Repos))
1919
}
2020
}
2121

2222
func TestDefaultReposConfiguration(t *testing.T) {
2323
config := DefaultConfig()
2424

25-
// Expected repos with their correct URLs
2625
expectedRepos := map[string]struct {
2726
repoType string
2827
url string
2928
}{
3029
"community": {repoType: "topic", url: "agent-skill"},
3130
"anthropics": {repoType: "dir", url: "anthropics/skills/skills"},
32-
"mcp-servers": {repoType: "dir", url: "modelcontextprotocol/servers/src"},
3331
"scientific": {repoType: "dir", url: "K-Dense-AI/claude-scientific-skills/scientific-skills"},
3432
"superpowers": {repoType: "dir", url: "obra/superpowers/skills"},
3533
"openai": {repoType: "dir", url: "openai/skills/skills"},

0 commit comments

Comments
 (0)