figma-console-mcp 1.6.3 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/dist/cloudflare/core/design-code-tools.js +1639 -0
- package/dist/cloudflare/core/types/design-code.js +4 -0
- package/dist/cloudflare/index.js +4 -0
- package/dist/core/design-code-tools.d.ts +47 -0
- package/dist/core/design-code-tools.d.ts.map +1 -0
- package/dist/core/design-code-tools.js +1640 -0
- package/dist/core/design-code-tools.js.map +1 -0
- package/dist/core/types/design-code.d.ts +229 -0
- package/dist/core/types/design-code.d.ts.map +1 -0
- package/dist/core/types/design-code.js +5 -0
- package/dist/core/types/design-code.js.map +1 -0
- package/dist/local.d.ts.map +1 -1
- package/dist/local.js +3 -0
- package/dist/local.js.map +1 -1
- package/figma-desktop-bridge/ui.html +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -310,6 +310,10 @@ When you first use design system tools:
|
|
|
310
310
|
- Supports markdown formatting for rich documentation
|
|
311
311
|
- Descriptions appear in Dev Mode for developers
|
|
312
312
|
|
|
313
|
+
### 🔍 Design-Code Parity (All Modes)
|
|
314
|
+
- `figma_check_design_parity` - Compare Figma component specs against code implementation, producing a scored diff report with actionable fix items
|
|
315
|
+
- `figma_generate_component_doc` - Generate platform-agnostic markdown documentation by merging Figma design data with code-side info
|
|
316
|
+
|
|
313
317
|
### 🔧 Variable Management (Local Mode + Desktop Bridge)
|
|
314
318
|
- `figma_create_variable_collection` - Create new variable collections with modes
|
|
315
319
|
- `figma_create_variable` - Create COLOR, FLOAT, STRING, or BOOLEAN variables
|
|
@@ -362,6 +366,13 @@ Rename the "Default" mode to "Light Theme"
|
|
|
362
366
|
Add a "High Contrast" mode to the existing collection
|
|
363
367
|
```
|
|
364
368
|
|
|
369
|
+
### Design-Code Parity
|
|
370
|
+
```
|
|
371
|
+
Compare the Button component in Figma against our React implementation
|
|
372
|
+
Check design parity for the Card component before sign-off
|
|
373
|
+
Generate component documentation for the Dialog from our design system
|
|
374
|
+
```
|
|
375
|
+
|
|
365
376
|
### Visual Debugging
|
|
366
377
|
```
|
|
367
378
|
Take a screenshot of the current Figma canvas
|