@ufira/vibma 0.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/LICENSE +22 -0
- package/README.md +54 -0
- package/dist/mcp.cjs +1997 -0
- package/dist/mcp.cjs.map +1 -0
- package/dist/mcp.d.cts +1 -0
- package/dist/mcp.d.ts +1 -0
- package/dist/mcp.js +1976 -0
- package/dist/mcp.js.map +1 -0
- package/package.json +54 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ufira.ai
|
|
4
|
+
Copyright (c) 2025 sonnylazuardi (original work)
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
|
14
|
+
all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
22
|
+
THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
# ✦ Vibma
|
|
4
|
+
|
|
5
|
+
**Vibe Design meets Figma.**
|
|
6
|
+
|
|
7
|
+
Let AI agents design directly in Figma — read layouts, create components,
|
|
8
|
+
modify styles, and build entire design systems through conversation.
|
|
9
|
+
|
|
10
|
+
[](./LICENSE)
|
|
11
|
+
[](https://discord.gg/4XTedZdwV6)
|
|
12
|
+
|
|
13
|
+
[](https://youtu.be/AltDYHHZrcY)
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Prerequisites
|
|
19
|
+
|
|
20
|
+
Vibma works with any LLM that supports MCP, but only **Claude Opus 4.6**
|
|
21
|
+
consistently achieves the demonstrated results. GPT-5.3-Codex comes close
|
|
22
|
+
but makes occasional mistakes.
|
|
23
|
+
|
|
24
|
+
## Setup
|
|
25
|
+
|
|
26
|
+
Two paths:
|
|
27
|
+
|
|
28
|
+
| | Guide | For |
|
|
29
|
+
|---|---|---|
|
|
30
|
+
| 📦 | [**DRAGME.md**](./DRAGME.md) | Clone the repo, build from source, full control |
|
|
31
|
+
| ☁️ | [**CARRYME.md**](./CARRYME.md) | Install from Figma store, zero cloning *(coming soon)* |
|
|
32
|
+
|
|
33
|
+
Or just paste this to your AI agent and let it figure it out:
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
Set up Vibma so I can vibe-design in Figma.
|
|
37
|
+
Follow the instructions at https://raw.githubusercontent.com/ufira-ai/vibma/refs/heads/main/DRAGME.md
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Community
|
|
41
|
+
|
|
42
|
+
[](https://discord.gg/4XTedZdwV6)
|
|
43
|
+
|
|
44
|
+
- [GitHub Issues](https://github.com/ufira-ai/vibma/issues) — bugs and feature requests
|
|
45
|
+
|
|
46
|
+
Vibma is the first open-source project from **[ufira](https://github.com/ufira-ai)** — a platform bridging creators and technology. We believe everyone who wants to create should have access to AI-powered tools, not just developers.
|
|
47
|
+
|
|
48
|
+
## Acknowledgments
|
|
49
|
+
|
|
50
|
+
Built on the foundation of [cursor-talk-to-figma-mcp](https://github.com/grab/cursor-talk-to-figma-mcp) by [sonnylazuardi](https://github.com/sonnylazuardi).
|
|
51
|
+
|
|
52
|
+
## License
|
|
53
|
+
|
|
54
|
+
[MIT](./LICENSE)
|