forked from antfu/skills
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeta.ts
More file actions
66 lines (63 loc) · 1.63 KB
/
meta.ts
File metadata and controls
66 lines (63 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
export interface VendorSkillMeta {
official?: boolean
source: string
skills: Record<string, string> // sourceSkillName -> outputSkillName
}
/**
* Repositories to clone as submodules and generate skills from source
*/
export const submodules = {
vue: 'https://github.com/vuejs/docs',
nuxt: 'https://github.com/nuxt/nuxt',
vite: 'https://github.com/vitejs/vite',
unocss: 'https://github.com/unocss/unocss',
pnpm: 'https://github.com/pnpm/pnpm.io',
pinia: 'https://github.com/vuejs/pinia',
tsdown: 'https://github.com/rolldown/tsdown',
vitest: 'https://github.com/vitest-dev/vitest',
vitepress: 'https://github.com/vuejs/vitepress',
}
/**
* Already generated skills, sync with their `skills/` directory
*/
export const vendors: Record<string, VendorSkillMeta> = {
'slidev': {
official: true,
source: 'https://github.com/slidevjs/slidev',
skills: {
slidev: 'slidev',
},
},
'vueuse': {
official: true,
source: 'https://github.com/vueuse/skills',
skills: {
'vueuse-functions': 'vueuse-functions',
},
},
'vue-best-practices': {
source: 'https://github.com/hyf0/vue-skills',
skills: {
'vue-best-practices': 'vue-best-practices',
},
},
'turborepo': {
official: true,
source: 'https://github.com/vercel/turborepo',
skills: {
turborepo: 'turborepo',
},
},
'web-design-guidelines': {
source: 'https://github.com/vercel-labs/agent-skills',
skills: {
'web-design-guidelines': 'web-design-guidelines',
},
},
}
/**
* Hand-written skills with Anthony Fu's preferences/tastes/recommendations
*/
export const manual = [
'antfu',
]