with-figma 0.1.3 → 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/bin/with-figma.js +6 -3
- package/figma-plugin/manifest.json +2 -1
- package/package.json +1 -1
package/bin/with-figma.js
CHANGED
|
@@ -48,13 +48,16 @@ if (command === "init") {
|
|
|
48
48
|
// Show Figma plugin path
|
|
49
49
|
const manifestPath = path.join(PKG_ROOT, "figma-plugin", "manifest.json");
|
|
50
50
|
console.log("");
|
|
51
|
-
console.log("
|
|
51
|
+
console.log("Done! Next steps:");
|
|
52
52
|
console.log("");
|
|
53
|
-
console.log("1. Import Figma plugin:");
|
|
53
|
+
console.log("1. Import Figma plugin (one-time):");
|
|
54
54
|
console.log(" Figma → Plugins → Development → Import plugin from manifest");
|
|
55
55
|
console.log(" Path: " + manifestPath);
|
|
56
56
|
console.log("");
|
|
57
|
-
console.log("2.
|
|
57
|
+
console.log("2. Start MCP server (no editor restart needed):");
|
|
58
|
+
console.log(" VS Code: Ctrl+Shift+P → 'MCP: List Servers' → start 'with-figma'");
|
|
59
|
+
console.log(" Claude Code: /mcp → restart 'with-figma'");
|
|
60
|
+
console.log("");
|
|
58
61
|
console.log("3. Open the plugin in Figma → select elements → chat with AI");
|
|
59
62
|
|
|
60
63
|
process.exit(0);
|