v0.13.0
What's New in v0.13.0
v0.13.0 is focused on design output quality: new support for Figma grid layouts, a batch of rendering bug fixes, and — perhaps most importantly — a new default output format that cuts token usage roughly in half. Two of these changes came from the community: thanks to @Jkuzz and @cnYui.
Your payloads just got cut in half
Every byte get_figma_data returns is context budget your agent has to spend. And beyond cost, it spends your model's attention — when there are too many details to attend to, details get lost and designs get implemented at lower quality. So we leaned hard on shrinking it. Tree is now the default output format, and a new dedup pass collapses repeated styles and copy-pasted subtrees while reducing indirection for one-off styles.
Measured across four real Figma files, the output is now half the size it was on average:
| design | v0.12.0 | v0.13.0 | change |
|---|---|---|---|
| small | 14.4 KB | 7.4 KB | −48.6% |
| medium | 43.5 KB | 22.1 KB | −49.2% |
| large | 176.0 KB | 88.2 KB | −49.9% |
| massive | 707.0 KB | 253.9 KB | −64.1% |
Support for Figma grid layouts
Grid auto-layouts used to collapse into a flat stack. Now, rows, columns, gaps, and per-cell placement are supported properly.
Root level nodes are sent with "contextual" width
Top level nodes used to be returned with fixed dimensions. This often lead agents to implement them rigidly, with fixed widths and no consideration for their surroundings. Now designs should render responsive by default, with the designed width coming along for reference.
Fixes & polish
- Colors match what you see. Nodes with multiple semi-transparent fills now render the correct color. #390
- Blur matches the design's strength. Blurs were coming out twice as strong as Figma renders them. Now they match. #392
- Font-adjustments use more appropriate values. Letter-spacing and line-height should now render in more relative units. Before, agents often encoded hyper-specific px values, e.g.
-1.12px. #391 - Support for outlined and inset strokes. Your agent can tell an outline ring from an inset border. Thanks @Jkuzz. #386
- OAuth over HTTP. The HTTP endpoints now accept a per-request bearer token. Thanks @cnYui. #384
- SVGs report size.
download_figma_imagesused to report every SVG as0x0px. It now reports the actual dimensions. #396
Full technical changelog
0.13.0 (2026-06-18)
Features
- CSS Grid layout support (#347) (5c1da79)
- extractors: deduplicate repeated styles and subtrees to shrink output (#389) (a43e465)
- fills: flatten all-solid fill stacks into a single resolved color (#390) (dcf11d2)
- format: default output to tree instead of yaml (#394) (4e3a08b)
- layout: emit the requested root as contextual sizing with a designed reference (#393) (ef888b5)
- strokes: include strokeAlign in simplified stroke output (#386) (c807a27)
- support request bearer oauth tokens over HTTP (#384) (22426e6)