@youware-labs/figma-pilot-mcp 0.1.2 → 0.1.4

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 CHANGED
@@ -57,7 +57,7 @@ Once the MCP is configured and the Figma plugin is running, you can ask Claude t
57
57
  | `figma_to_component` | Convert to component |
58
58
  | `figma_create_variants` | Create component variants |
59
59
  | `figma_ensure_accessibility` | Check/fix accessibility issues |
60
- | `figma_export` | Export as PNG/SVG/PDF |
60
+ | `figma_export` | Export as PNG/SVG/PDF (use after finishing a request to review PNG) |
61
61
 
62
62
  ## Example Usage
63
63
 
@@ -79,6 +79,9 @@ figma_modify({ target: "selection", fill: "#0066FF", cornerRadius: 8 })
79
79
 
80
80
  // Check accessibility
81
81
  figma_ensure_accessibility({ target: "page", level: "AA", autoFix: true })
82
+
83
+ // After finishing a requested change, export PNG for review
84
+ figma_export({ target: "selection", format: "png", scale: 2 })
82
85
  ```
83
86
 
84
87
  ## How It Works