@@ -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
2222func 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