Initial commit: restructure to flat layout with ui/ and web/ at root
This commit is contained in:
21
web/server/lib/skills-catalog/curated-sources.js
Normal file
21
web/server/lib/skills-catalog/curated-sources.js
Normal file
@@ -0,0 +1,21 @@
|
||||
export const CURATED_SKILLS_SOURCES = [
|
||||
{
|
||||
id: 'anthropic',
|
||||
label: 'Anthropic',
|
||||
description: "Anthropic's public skills repository",
|
||||
source: 'anthropics/skills',
|
||||
defaultSubpath: 'skills',
|
||||
sourceType: 'github',
|
||||
},
|
||||
{
|
||||
id: 'clawdhub',
|
||||
label: 'ClawdHub',
|
||||
description: 'Community skill registry with vector search',
|
||||
source: 'clawdhub:registry',
|
||||
sourceType: 'clawdhub',
|
||||
},
|
||||
];
|
||||
|
||||
export function getCuratedSkillsSources() {
|
||||
return CURATED_SKILLS_SOURCES.slice();
|
||||
}
|
||||
Reference in New Issue
Block a user