Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
124 changes: 124 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A home for integrations that make more sense as standalone WASM modules than as

| Plugin | Tools | Description |
|--------|-------|-------------|
| _none yet_ | | |
| `figma_bridge` | 15 | Figma Desktop Bridge — write to canvas via the Plugin API (create frames, components, auto layout, execute arbitrary plugin code) |

Prebuilt binaries live in [`dist/`](dist/) and are referenced by [`manifest.json`](manifest.json).

Expand Down
Binary file added dist/figma_bridge.wasm
Binary file not shown.
16 changes: 15 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,19 @@
"schema_version": 1,
"name": "daltoniam-plugins",
"description": "Third-party Switchboard WASM plugins by @daltoniam",
"plugins": []
"plugins": [
{
"name": "figma_bridge",
"description": "Figma Desktop Bridge — access the Figma Plugin API for write operations (create frames, components, auto layout, etc.) via a companion plugin running in Figma Desktop.",
"versions": [
{
"version": "0.1.0",
"sha256": "d9ef1dc78172583a8e254dbb984c099320e87c3ae2c789df89846d21358d0c4d",
"size": 172703,
"released_at": "2025-05-15T00:00:00Z",
"url": "https://raw.githubusercontent.com/daltoniam/switchboard_plugins/main/dist/figma_bridge.wasm"
}
]
}
]
}
12 changes: 12 additions & 0 deletions plugins/figma-bridge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "figma-bridge-wasm"
version = "0.1.0"
edition = "2021"

[lib]
crate-type = ["cdylib"]

[dependencies]
switchboard-guest-sdk = { git = "https://github.com/daltoniam/switchboard.git" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Loading
Loading