@ufira/vibma 1.0.0-rc6 → 1.1.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 +48 -18
- package/dist/mcp.cjs +4877 -349
- package/dist/mcp.js +4893 -337
- package/dist/tools/generated/guards.cjs +107 -3
- package/dist/tools/generated/guards.d.cts +21 -1
- package/dist/tools/generated/guards.d.ts +21 -1
- package/dist/tools/generated/guards.js +97 -3
- package/dist/tools/registry.cjs +253 -67
- package/dist/tools/registry.js +253 -67
- package/dist/tools/types.d.cts +2 -0
- package/dist/tools/types.d.ts +2 -0
- package/dist/utils/coercion.cjs +18 -2
- package/dist/utils/coercion.d.cts +9 -1
- package/dist/utils/coercion.d.ts +9 -1
- package/dist/utils/coercion.js +16 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
> **[简体中文](
|
|
1
|
+
> **[简体中文](https://github.com/ufira-ai/vibma/blob/main/README.zh-CN.md)**
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
|
|
5
|
-
<img src="
|
|
5
|
+
<img src="https://raw.githubusercontent.com/ufira-ai/vibma/main/logo.svg" alt="Vibma" width="120" />
|
|
6
6
|
|
|
7
7
|
# Vibma
|
|
8
8
|
|
|
@@ -11,48 +11,78 @@
|
|
|
11
11
|
https://github.com/user-attachments/assets/bf38e37d-57bb-40b3-a2d1-f89216117c11
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
> **Project Status:** Vibma is no longer under active development. Figma has
|
|
15
|
+
> launched native MCP capabilities through
|
|
16
|
+
> **[Figma for Agents](https://www.figma.com/blog/the-figma-canvas-is-now-open-to-agents/)**,
|
|
17
|
+
> and the Vibma plugin was not accepted to the Figma marketplace due to
|
|
18
|
+
> "overlap" with this first-party offering.
|
|
19
|
+
>
|
|
20
|
+
> **Vibma is not an official Figma tool.** For production use, we recommend
|
|
21
|
+
> Figma's native MCP integration and encourage you to follow
|
|
22
|
+
> [Figma's official updates](https://www.figma.com/blog/) for the latest
|
|
23
|
+
> agent capabilities.
|
|
24
|
+
>
|
|
25
|
+
> The source code remains available under MIT for learning and reference.
|
|
26
|
+
> We recommend reading [Figma's Terms of Service](https://www.figma.com/tos/)
|
|
27
|
+
> before using Vibma to ensure compliance with their platform policies.
|
|
28
|
+
|
|
29
|
+
Vibma helps AI agents produce structurally sound Figma files — proper auto-layout, design tokens, component architecture, and reusable design-system patterns.
|
|
16
30
|
|
|
17
31
|
---
|
|
18
32
|
|
|
19
33
|
## Model Recommendations
|
|
20
34
|
|
|
21
|
-
Vibma works with any LLM
|
|
35
|
+
Vibma works with any MCP-capable LLM, but model quality matters.
|
|
22
36
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
37
|
+
| Tier | OpenAI | Claude | Gemini | Open Source |
|
|
38
|
+
|------|--------|--------|--------|-------------|
|
|
39
|
+
| **Baseline** | GPT 5.2 Medium | Claude Sonnet 4.6 | Gemini 2.5 Flash | Kimi K2.5 |
|
|
40
|
+
| **Recommended** | GPT 5.4 | Claude Opus 4.6 | Gemini 3.1 Pro | — |
|
|
26
41
|
|
|
27
|
-
|
|
42
|
+
- **GPT 5.4** — best overall balance of tool competence and design taste.
|
|
43
|
+
- **Claude Opus 4.6** — strongest tool use, but final designs can feel formulaic.
|
|
44
|
+
- **Gemini 3.1 Pro** — solid middle ground; GPT 5.4 currently edges it on both axes.
|
|
45
|
+
- **Open source** — Kimi K2.5 handles basics (variables, styles) but struggles with complex multi-tool flows.
|
|
28
46
|
|
|
29
|
-
|
|
47
|
+
## Setup
|
|
30
48
|
|
|
31
49
|
| | Guide | For |
|
|
32
50
|
|---|---|---|
|
|
33
|
-
| 📦 | [**DRAGME.md**](
|
|
34
|
-
| ☁️ | [**CARRYME.md**](
|
|
35
|
-
| 📖 | [**Docs**](https://ufira-ai.github.io/Vibma/) | Tool reference
|
|
51
|
+
| 📦 | [**DRAGME.md**](https://github.com/ufira-ai/vibma/blob/main/DRAGME.md) | Clone the repo, build from source |
|
|
52
|
+
| ☁️ | [**CARRYME.md**](https://github.com/ufira-ai/vibma/blob/main/CARRYME.md) | Install from npm, zero cloning |
|
|
53
|
+
| 📖 | [**Docs**](https://ufira-ai.github.io/Vibma/) | Tool reference — parameters, response schemas, examples |
|
|
36
54
|
|
|
37
|
-
Or
|
|
55
|
+
Or paste this to your AI agent:
|
|
38
56
|
|
|
39
57
|
```
|
|
40
58
|
Set up Vibma so I can vibe-design in Figma.
|
|
41
59
|
Follow the instructions at https://raw.githubusercontent.com/ufira-ai/vibma/refs/heads/main/CARRYME.md
|
|
42
60
|
```
|
|
43
61
|
|
|
62
|
+
## Optional: Library & Image Tools
|
|
63
|
+
|
|
64
|
+
All core tools work without API keys. Two optional integrations add library discovery and stock photos:
|
|
65
|
+
|
|
66
|
+
| Env var | Enables | How to get it |
|
|
67
|
+
|---------|---------|---------------|
|
|
68
|
+
| `FIGMA_API_TOKEN` | **Library** — discover published team library components and styles | [Figma Settings > Security > Personal access tokens](https://www.figma.com/developers/api#access-tokens) |
|
|
69
|
+
| `FIGMA_TEAM_ID` | Default team for library discovery | The number in `figma.com/files/team/<ID>/...` |
|
|
70
|
+
| `PEXELS_API_KEY` | **Images** — search and place stock photos | [pexels.com/api/key](https://www.pexels.com/api/key/) (free) |
|
|
71
|
+
|
|
72
|
+
The Figma PAT requires two scopes: **File content (Read)** and **Team library content (Read)**. See the setup guides for step-by-step instructions with screenshots.
|
|
73
|
+
|
|
44
74
|
## Community
|
|
45
75
|
|
|
46
|
-
[](https://discord.gg/4XTedZdwV6)
|
|
47
77
|
|
|
48
78
|
[GitHub Issues](https://github.com/ufira-ai/vibma/issues) — bugs and feature requests
|
|
49
79
|
|
|
50
|
-
Vibma is the first open-source project from **[ufira](https://github.com/ufira-ai)** — a platform bridging creators and technology.
|
|
80
|
+
Vibma is the first open-source project from **[ufira](https://github.com/ufira-ai)** — a platform bridging creators and technology.
|
|
51
81
|
|
|
52
82
|
## Acknowledgments
|
|
53
83
|
|
|
54
|
-
Built on
|
|
84
|
+
Built on [cursor-talk-to-figma-mcp](https://github.com/grab/cursor-talk-to-figma-mcp) by [sonnylazuardi](https://github.com/sonnylazuardi). Icon search and insertion powered by the [Iconify](https://iconify.design/) public API — an open-source unified icon framework providing 200,000+ icons from 100+ collections. Stock photos by [Pexels](https://www.pexels.com) — free for personal and commercial use. Please read the [Pexels Terms of Service](https://www.pexels.com/terms-of-service/) and credit photographers in production.
|
|
55
85
|
|
|
56
86
|
## License
|
|
57
87
|
|
|
58
|
-
[MIT](
|
|
88
|
+
[MIT](https://github.com/ufira-ai/vibma/blob/main/LICENSE)
|