figma-relai 0.2.6 → 0.2.7
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 +15 -1
- package/dist/{chunk-Z2M6XVMP.js → chunk-VNOKL7LL.js} +2 -2
- package/dist/{chunk-Z2M6XVMP.js.map → chunk-VNOKL7LL.js.map} +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/{manifest-RW27TG6P.js → manifest-CC3RJVMQ.js} +2 -2
- package/package.json +1 -1
- /package/dist/{manifest-RW27TG6P.js.map → manifest-CC3RJVMQ.js.map} +0 -0
package/README.md
CHANGED
|
@@ -2,8 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
English | [日本語](README.ja.md) | [中文](README.zh.md)
|
|
4
4
|
|
|
5
|
+
[figma-relai.vercel.app](https://figma-relai.vercel.app)
|
|
6
|
+
|
|
5
7
|
**Your AI, on the canvas.** Relai connects Claude Code, Cursor, Codex — any MCP client — to Figma, so you can read, edit, audit, and build design systems by talking to the model you already use. It works on every Figma plan, because writes go through a Figma plugin rather than the paid REST API.
|
|
6
8
|
|
|
9
|
+
Relai is built on a simple position: the AI era should put designers *more* in charge, not less — taste and judgment stay with you, the labor moves to a model you already trust, with every step visible.
|
|
10
|
+
|
|
7
11
|
<img src="assets/plugin-ui.png" alt="The Relai plugin: activity feed, connection status, and a Stop button" width="380" />
|
|
8
12
|
|
|
9
13
|
## What a session looks like
|
|
@@ -18,6 +22,16 @@ English | [日本語](README.ja.md) | [中文](README.zh.md)
|
|
|
18
22
|
|
|
19
23
|
Every command shows up in the plugin as it runs, with timing and success or failure. Click an entry to jump to that layer on the canvas. Press **Stop** if you change your mind — the rest of the batch is cancelled.
|
|
20
24
|
|
|
25
|
+
Relai is how its author maintains a production design system. From one of those sessions — July 2026, numbers unedited:
|
|
26
|
+
|
|
27
|
+
```text
|
|
28
|
+
audit_colors 45,509 nodes scanned · 3.9s
|
|
29
|
+
ghost census 30,251 stale references found
|
|
30
|
+
approval gate designer approved · scope: full file
|
|
31
|
+
batch_execute 25,351 bindings rebound
|
|
32
|
+
re-census 30,251 → 936 · zero visual change
|
|
33
|
+
```
|
|
34
|
+
|
|
21
35
|
## Get started
|
|
22
36
|
|
|
23
37
|
You need [Figma Desktop](https://www.figma.com/downloads/), [Node.js](https://nodejs.org/) 18+, and an MCP client.
|
|
@@ -53,7 +67,7 @@ Everything else. `execute_figma` runs JavaScript against the Figma Plugin API di
|
|
|
53
67
|
|
|
54
68
|
## You stay in control
|
|
55
69
|
|
|
56
|
-
The plugin is the designer's side of the deal: a live activity feed of everything the AI does, an "AI connected" indicator that means an agent is actually paired (not just that a server is running), and a Stop button that cancels pending work. Selection and page changes you make flow back to the AI as events, so "now do the same to this one" works without re-explaining.
|
|
70
|
+
The plugin is the designer's side of the deal: a live activity feed of everything the AI does, an "AI connected" indicator that means an agent is actually paired (not just that a server is running), and a Stop button that cancels pending work. Selection and page changes you make flow back to the AI as events, so "now do the same to this one" works without re-explaining. The relay is local: file contents move only between Figma, your machine, and the AI client you already trust.
|
|
57
71
|
|
|
58
72
|
Three dials go further when you want them. **Approvals** ("Ask before big edits") holds bulk writes and code execution until you press Approve in the panel. **Lock to selection** rejects edits outside whatever you've selected — the AI gets a clear error, not a silent pass. And **file conventions** are a little CLAUDE.md stored inside the Figma file itself: naming rules, spacing habits, do-not-touch pages — every future session, from any AI client, reads it before working. The UI speaks English, 日本語, and 中文.
|
|
59
73
|
|
|
@@ -9,7 +9,7 @@ function createServer() {
|
|
|
9
9
|
return new McpServer(
|
|
10
10
|
{
|
|
11
11
|
name: "Relai",
|
|
12
|
-
version: "0.2.
|
|
12
|
+
version: "0.2.7"
|
|
13
13
|
},
|
|
14
14
|
{
|
|
15
15
|
instructions: `
|
|
@@ -3580,4 +3580,4 @@ export {
|
|
|
3580
3580
|
listToolCatalog,
|
|
3581
3581
|
registerPrompts
|
|
3582
3582
|
};
|
|
3583
|
-
//# sourceMappingURL=chunk-
|
|
3583
|
+
//# sourceMappingURL=chunk-VNOKL7LL.js.map
|