-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclaude_skills.json
More file actions
434 lines (434 loc) · 12.8 KB
/
claude_skills.json
File metadata and controls
434 lines (434 loc) · 12.8 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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
{
"$schema": "https://anthropic.com/schemas/claude-skills-v1.json",
"name": "figma-to-code",
"displayName": "Figma to Code Agent",
"version": "0.8.0",
"description": "AI-powered tool that converts Figma designs to production-ready React/Vue code with intelligent decision-making",
"author": {
"name": "lewiscutey",
"url": "https://github.com/lewiscutey"
},
"icon": "🎨",
"category": "development",
"tags": [
"figma",
"code-generation",
"react",
"vue",
"design-to-code",
"ai-agent"
],
"homepage": "https://github.com/lewiscutey/figma-to-code-agent",
"repository": {
"type": "git",
"url": "https://github.com/lewiscutey/figma-to-code-agent.git"
},
"license": "MIT",
"runtime": {
"type": "node",
"version": ">=18.0.0",
"command": "figma-to-code-mcp",
"args": []
},
"capabilities": {
"conversational": true,
"contextAware": true,
"iterative": true,
"multiStep": true,
"fileGeneration": true,
"codeAnalysis": true,
"streaming": false
},
"tools": [
{
"name": "figma_to_code",
"displayName": "Generate Code from Figma",
"description": "Convert Figma design to production-ready React or Vue code with intelligent layout inference and AI enhancements",
"category": "code-generation",
"inputSchema": {
"type": "object",
"properties": {
"figmaUrl": {
"type": "string",
"description": "The URL of the Figma design (file URL or node URL)",
"pattern": "^https://www\\.figma\\.com/",
"examples": [
"https://www.figma.com/file/abc123/MyDesign",
"https://www.figma.com/file/abc123/MyDesign?node-id=1:2"
]
},
"framework": {
"type": "string",
"description": "Target framework for code generation",
"enum": ["react", "vue", "auto"],
"default": "auto"
},
"styleMode": {
"type": "string",
"description": "CSS styling approach",
"enum": ["css-modules", "tailwind", "css", "auto"],
"default": "auto"
},
"outputPath": {
"type": "string",
"description": "Directory to output generated files (relative to workspace root)",
"default": "./output"
},
"qualityMode": {
"type": "string",
"description": "Balance between speed and quality",
"enum": ["fast", "balanced", "high"],
"default": "balanced"
},
"enableAI": {
"type": "boolean",
"description": "Enable AI enhancements for better naming and code quality",
"default": false
},
"extractTokens": {
"type": "boolean",
"description": "Extract design tokens (colors, typography, spacing)",
"default": false
}
},
"required": ["figmaUrl"]
},
"outputSchema": {
"type": "object",
"properties": {
"success": {
"type": "boolean",
"description": "Whether the code generation was successful"
},
"files": {
"type": "array",
"description": "List of generated files",
"items": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "File path relative to output directory"
},
"type": {
"type": "string",
"enum": ["component", "style", "asset", "token"],
"description": "Type of generated file"
}
}
}
},
"summary": {
"type": "object",
"description": "Generation summary",
"properties": {
"componentsGenerated": {
"type": "number"
},
"assetsDownloaded": {
"type": "number"
},
"tokensExtracted": {
"type": "number"
}
}
},
"message": {
"type": "string",
"description": "Human-readable result message"
}
}
},
"examples": [
{
"input": {
"figmaUrl": "https://www.figma.com/file/abc123/LoginPage",
"framework": "react",
"styleMode": "css-modules"
},
"output": {
"success": true,
"files": [
{
"path": "LoginPage.tsx",
"type": "component"
},
{
"path": "LoginPage.module.css",
"type": "style"
}
],
"message": "Successfully generated React component with CSS Modules"
}
}
]
},
{
"name": "analyze_design",
"displayName": "Analyze Figma Design",
"description": "Analyze Figma design for accessibility, performance, and design system consistency issues",
"category": "analysis",
"inputSchema": {
"type": "object",
"properties": {
"figmaUrl": {
"type": "string",
"description": "The URL of the Figma design to analyze",
"pattern": "^https://www\\.figma\\.com/"
},
"checkAccessibility": {
"type": "boolean",
"description": "Check for accessibility issues (missing alt text, ARIA labels, etc.)",
"default": true
},
"checkPerformance": {
"type": "boolean",
"description": "Check for performance issues (large images, complex layouts, etc.)",
"default": true
},
"checkConsistency": {
"type": "boolean",
"description": "Check for design system consistency issues",
"default": true
}
},
"required": ["figmaUrl"]
},
"outputSchema": {
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"analysis": {
"type": "object",
"properties": {
"complexity": {
"type": "string",
"enum": ["simple", "medium", "complex"]
},
"nodeCount": {
"type": "number"
},
"issues": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["accessibility", "performance", "consistency"]
},
"severity": {
"type": "string",
"enum": ["low", "medium", "high"]
},
"message": {
"type": "string"
}
}
}
},
"suggestions": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
},
{
"name": "update_component",
"displayName": "Update Component from Figma",
"description": "Update existing component to match new Figma design while preserving business logic",
"category": "code-generation",
"inputSchema": {
"type": "object",
"properties": {
"figmaUrl": {
"type": "string",
"description": "The URL of the new Figma design",
"pattern": "^https://www\\.figma\\.com/"
},
"componentPath": {
"type": "string",
"description": "Path to the existing component file (relative to workspace root)"
},
"preserveLogic": {
"type": "boolean",
"description": "Preserve existing business logic and state management",
"default": true
},
"updateMode": {
"type": "string",
"description": "How to handle updates",
"enum": ["styles-only", "structure-only", "full"],
"default": "full"
}
},
"required": ["figmaUrl", "componentPath"]
},
"outputSchema": {
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"updatedFiles": {
"type": "array",
"items": {
"type": "string"
}
},
"changes": {
"type": "object",
"properties": {
"added": {
"type": "array",
"items": {
"type": "string"
}
},
"modified": {
"type": "array",
"items": {
"type": "string"
}
},
"removed": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"message": {
"type": "string"
}
}
}
}
],
"configuration": {
"type": "object",
"properties": {
"figmaAccessToken": {
"type": "string",
"description": "Figma Personal Access Token for API access",
"secret": true,
"required": true,
"validation": {
"pattern": "^figd_[a-zA-Z0-9_-]+$",
"message": "Must be a valid Figma access token starting with 'figd_'"
}
},
"defaultFramework": {
"type": "string",
"description": "Default framework for code generation",
"enum": ["react", "vue", "auto"],
"default": "auto"
},
"defaultStyleMode": {
"type": "string",
"description": "Default CSS styling approach",
"enum": ["css-modules", "tailwind", "css", "auto"],
"default": "auto"
},
"defaultQualityMode": {
"type": "string",
"description": "Default quality mode (speed vs quality trade-off)",
"enum": ["fast", "balanced", "high"],
"default": "balanced"
},
"enableAIByDefault": {
"type": "boolean",
"description": "Enable AI enhancements by default",
"default": false
},
"llmProvider": {
"type": "string",
"description": "LLM provider for AI enhancements (requires API keys)",
"enum": ["bedrock", "openai", "anthropic", "none"],
"default": "none"
},
"llmModel": {
"type": "string",
"description": "LLM model identifier",
"default": "anthropic.claude-3-sonnet-20240229-v1:0"
},
"tokenBudget": {
"type": "number",
"description": "Maximum tokens per session (0 = unlimited)",
"default": 100000,
"minimum": 0
},
"enableCache": {
"type": "boolean",
"description": "Enable caching of Figma data and LLM responses",
"default": true
},
"cacheTTL": {
"type": "number",
"description": "Cache time-to-live in seconds",
"default": 86400
},
"verbosity": {
"type": "string",
"description": "Output verbosity level",
"enum": ["minimal", "normal", "detailed"],
"default": "normal"
}
}
},
"permissions": {
"filesystem": {
"read": ["**/*"],
"write": ["output/**/*", "src/**/*"],
"description": "Read project files and write generated code"
},
"network": {
"domains": [
"api.figma.com",
"*.amazonaws.com",
"api.openai.com",
"api.anthropic.com"
],
"description": "Access Figma API and LLM providers"
},
"environment": {
"read": [
"FIGMA_TOKEN",
"AWS_ACCESS_KEY_ID",
"AWS_SECRET_ACCESS_KEY",
"OPENAI_API_KEY",
"ANTHROPIC_API_KEY"
],
"description": "Read API credentials from environment variables"
}
},
"installation": {
"npm": {
"package": "figma-to-code-agent",
"global": true
},
"requirements": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
},
"documentation": {
"quickstart": "https://github.com/lewiscutey/figma-to-code-agent#quickstart",
"guide": "https://github.com/lewiscutey/figma-to-code-agent/blob/main/docs/MCP_UNIVERSAL_GUIDE.md",
"api": "https://github.com/lewiscutey/figma-to-code-agent#api",
"examples": "https://github.com/lewiscutey/figma-to-code-agent/tree/main/assets"
},
"support": {
"issues": "https://github.com/lewiscutey/figma-to-code-agent/issues",
"discussions": "https://github.com/lewiscutey/figma-to-code-agent/discussions",
"email": "support@example.com"
}
}