-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagents.json
More file actions
107 lines (107 loc) · 2.66 KB
/
agents.json
File metadata and controls
107 lines (107 loc) · 2.66 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"$schema": "https://raw.gh.umua.top/ClaudeDesktop/claude/refs/heads/main/agents/schema.json",
"version": 1,
"projectName": "calisyn",
"description": "Calisyn 项目,包含 Vue 3 前端和 Express 后端服务",
"mainEntry": "src/main.ts",
"buildCommands": {
"frontend": {
"command": "pnpm run build",
"description": "构建前端项目"
},
"service": {
"command": "cd service && pnpm run build",
"description": "构建后端服务"
},
"all": {
"command": "pnpm run build && cd service && pnpm run build",
"description": "构建前端和后端服务"
}
},
"runCommands": {
"dev": {
"command": "pnpm run dev",
"description": "启动前端开发服务器"
},
"service:dev": {
"command": "cd service && pnpm run dev",
"description": "启动后端服务开发模式"
}
},
"testCommands": {
"lint": {
"command": "pnpm run lint",
"description": "运行 ESLint 检查"
},
"service:lint": {
"command": "cd service && pnpm run lint",
"description": "运行后端服务 ESLint 检查"
},
"type-check": {
"command": "pnpm run type-check",
"description": "运行 TypeScript 类型检查"
}
},
"targets": {
"frontend": {
"type": "web",
"root": ".",
"output": "dist",
"entry": "src/main.ts",
"framework": "vue"
},
"service": {
"type": "server",
"root": "service",
"output": "service/build",
"entry": "service/src/index.ts"
}
},
"paths": {
"frontend": {
"src": "src",
"components": "src/components",
"views": "src/views",
"store": "src/store",
"router": "src/router",
"locales": "src/locales",
"utils": "src/utils",
"hooks": "src/hooks",
"api": "src/api",
"assets": "src/assets",
"styles": "src/styles"
},
"service": {
"src": "service/src",
"routes": "service/src",
"middleware": "service/src/middleware",
"utils": "service/src/utils"
}
},
"configFiles": {
"vite": "vite.config.ts",
"typescript": "tsconfig.json",
"eslint": ".eslintrc.cjs",
"tailwind": "tailwind.config.js",
"postcss": "postcss.config.js",
"service": {
"typescript": "service/tsconfig.json",
"tsup": "service/tsup.config.ts"
}
},
"dependencies": {
"frontend": {
"vue": "^3.2.47",
"vue-router": "^4.1.6",
"pinia": "^2.0.33",
"vue-i18n": "^9.2.2",
"naive-ui": "^2.34.3",
"tailwindcss": "^3.2.7",
"vite": "^4.2.0"
},
"service": {
"express": "^4.18.2",
"axios": "^1.6.0"
}
}
}