forked from Lexus2016/claude-code-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
272 lines (272 loc) · 8.87 KB
/
config.example.json
File metadata and controls
272 lines (272 loc) · 8.87 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
{
"mcpServers": {
"tavily-remote-mcp": {
"label": "🔍 Tavily Search",
"description": "Web search via Tavily API",
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.tavily.com/mcp/?tavilyApiKey=YOUR_TAVILY_API_KEY"
]
},
"web-search-prime": {
"label": "🌐 Web Search Prime",
"description": "Advanced web search (Z.ai)",
"type": "http",
"url": "https://api.z.ai/api/mcp/web_search_prime/mcp",
"headers": {
"Authorization": "Bearer YOUR_Z_AI_API_KEY"
},
"env": {
"ENABLE_TOOL_SEARCH": "true",
"ENABLE_EXPERIMENTAL_MCP_CLI": "true"
}
},
"web-reader": {
"label": "📖 Web Reader",
"description": "Read and extract web page content (Z.ai)",
"type": "http",
"url": "https://api.z.ai/api/mcp/web_reader/mcp",
"headers": {
"Authorization": "Bearer YOUR_Z_AI_API_KEY"
},
"env": {
"ENABLE_TOOL_SEARCH": "true",
"ENABLE_EXPERIMENTAL_MCP_CLI": "true"
}
},
"zread": {
"label": "📚 ZRead",
"description": "Read docs, GitHub repos, issues (Z.ai)",
"type": "http",
"url": "https://api.z.ai/api/mcp/zread/mcp",
"headers": {
"Authorization": "Bearer YOUR_Z_AI_API_KEY"
},
"env": {
"ENABLE_TOOL_SEARCH": "true",
"ENABLE_EXPERIMENTAL_MCP_CLI": "true"
}
},
"zai-mcp-server": {
"label": "🤖 Z.AI MCP",
"description": "Z.ai image analysis, OCR, diagrams",
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@z_ai/mcp-server"
],
"env": {
"ENABLE_TOOL_SEARCH": "true",
"ENABLE_EXPERIMENTAL_MCP_CLI": "true",
"Z_AI_API_KEY": "YOUR_Z_AI_API_KEY",
"Z_AI_MODE": "ZAI"
}
},
"server-memory": {
"label": "🧠 Memory",
"description": "Persistent knowledge graph memory",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
],
"env": {
"ENABLE_TOOL_SEARCH": "true",
"ENABLE_EXPERIMENTAL_MCP_CLI": "true",
"MEMORY_FILE_PATH": "~/.claude/memory.jsonl"
}
},
"filesystem": {
"label": "📁 Filesystem",
"description": "Read/write files in workspace",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/app/workspace"
],
"enabled": false
},
"github": {
"label": "🐙 GitHub",
"description": "Repos, issues, PRs, code search",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_TOKEN": ""
},
"enabled": false
}
},
"skills": {
"auto-mode": {
"label": "🎯 Auto-Skill Mode",
"description": "Meta-instructions for specialist role embodiment (auto-included when Auto-Skills is on)",
"file": "skills/auto-mode.md",
"category": "system"
},
"backend": {
"label": "⚙️ Backend Engineer",
"description": "Distributed systems, database architecture, API design at scale",
"file": "skills/backend.md",
"category": "engineering"
},
"api-designer": {
"label": "🔌 API Designer",
"description": "REST, GraphQL, gRPC, versioning strategies, developer experience",
"file": "skills/api-designer.md",
"category": "engineering"
},
"frontend": {
"label": "🎨 Frontend Engineer",
"description": "React philosophy, performance, accessibility, production-grade interfaces",
"file": "skills/frontend.md",
"category": "engineering"
},
"devops": {
"label": "🐳 DevOps Engineer",
"description": "Cloud architecture, CI/CD pipelines, infrastructure as code",
"file": "skills/devops.md",
"category": "engineering"
},
"docker": {
"label": "🐋 Docker & Containers",
"description": "Multi-stage builds, Compose, image optimization, container security",
"file": "skills/docker.md",
"category": "engineering"
},
"sysadmin": {
"label": "🖥️ Linux Sysadmin",
"description": "Remote server management, systemd, nginx, firewall, disk, security hardening",
"file": "skills/sysadmin.md",
"category": "engineering"
},
"kubernetes": {
"label": "☸️ Kubernetes",
"description": "Deployments, services, ingress, HPA, secrets, production K8s patterns",
"file": "skills/kubernetes.md",
"category": "engineering"
},
"postgres-wizard": {
"label": "🗄️ PostgreSQL Wizard",
"description": "Query optimization, indexing, schema design, billions of rows",
"file": "skills/postgres-wizard.md",
"category": "engineering"
},
"llm-architect": {
"label": "🧠 LLM Architect",
"description": "AI product architecture, context management, evaluation strategies",
"file": "skills/llm-architect.md",
"category": "ai"
},
"prompt-engineer": {
"label": "✍️ Prompt Engineer",
"description": "System prompts, few-shot examples, chain-of-thought, evaluation",
"file": "skills/prompt-engineer.md",
"category": "ai"
},
"rag-engineer": {
"label": "🔍 RAG Engineer",
"description": "Vector search, embeddings, chunking, retrieval quality optimization",
"file": "skills/rag-engineer.md",
"category": "ai"
},
"code-quality": {
"label": "💎 Code Quality",
"description": "Readability, SOLID principles, naming, maintainability practices",
"file": "skills/code-quality.md",
"category": "quality"
},
"debugging-master": {
"label": "🐛 Debugging Master",
"description": "Scientific debugging, root cause analysis, hypothesis testing",
"file": "skills/debugging-master.md",
"category": "quality"
},
"code-review": {
"label": "👁️ Code Reviewer",
"description": "Principal engineer code review — security, logic, performance, architecture",
"file": "skills/code-review.md",
"category": "quality"
},
"system-designer": {
"label": "🏗️ System Designer",
"description": "Scalable architecture, trade-offs, distributed systems design",
"file": "skills/system-designer.md",
"category": "quality"
},
"security": {
"label": "🔒 Security Expert",
"description": "Penetration testing mindset, OWASP, threat modeling, breaches prevention",
"file": "skills/security.md",
"category": "security"
},
"auth-specialist": {
"label": "🛡️ Auth Specialist",
"description": "OAuth, JWT, session management, identity systems, millions of logins",
"file": "skills/auth-specialist.md",
"category": "security"
},
"ui-design": {
"label": "🎭 UI Designer",
"description": "Visual hierarchy, color systems, components, pixel-perfect interfaces",
"file": "skills/ui-design.md",
"category": "design"
},
"ux-design": {
"label": "🧩 UX Designer",
"description": "User research, information architecture, usability, interaction design",
"file": "skills/ux-design.md",
"category": "design"
},
"product-management": {
"label": "📋 Product Manager",
"description": "Feature prioritization, metrics, roadmaps, stakeholder alignment",
"file": "skills/product-management.md",
"category": "product"
},
"docs-engineer": {
"label": "📚 Docs Engineer",
"description": "Developer documentation, API references, tutorials, onboarding guides",
"file": "skills/docs-engineer.md",
"category": "product"
},
"technical-writer": {
"label": "✒️ Technical Writer",
"description": "Clear technical communication, guides, READMEs, release notes",
"file": "skills/technical-writer.md",
"category": "product"
},
"fullstack": {
"label": "🔗 Fullstack Engineer",
"description": "End-to-end product engineer — schema, API, UI, integration thinking in one",
"file": "skills/fullstack.md",
"category": "engineering"
},
"data-engineer": {
"label": "📊 Data Engineer",
"description": "ETL pipelines, data quality, CDC, batch/stream processing at scale",
"file": "skills/data-engineer.md",
"category": "engineering"
},
"investment-banking": {
"label": "💼 Investment Banking Analyst",
"description": "Goldman Sachs-level financial analysis — DCF, LBO, M&A, Comps, IC memos",
"file": "skills/investment-banking.md",
"category": "finance"
},
"researcher": {
"label": "🔬 Deep Researcher",
"description": "Systematic research, competitive intelligence, market sizing, synthesis",
"file": "skills/researcher.md",
"category": "research"
}
}
}