Universal.Common.Formats.Kiwi 1.0.2

dotnet add package Universal.Common.Formats.Kiwi --version 1.0.2
                    
NuGet\Install-Package Universal.Common.Formats.Kiwi -Version 1.0.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Universal.Common.Formats.Kiwi" Version="1.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Universal.Common.Formats.Kiwi" Version="1.0.2" />
                    
Directory.Packages.props
<PackageReference Include="Universal.Common.Formats.Kiwi" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Universal.Common.Formats.Kiwi --version 1.0.2
                    
#r "nuget: Universal.Common.Formats.Kiwi, 1.0.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Universal.Common.Formats.Kiwi@1.0.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Universal.Common.Formats.Kiwi&version=1.0.2
                    
Install as a Cake Addin
#tool nuget:?package=Universal.Common.Formats.Kiwi&version=1.0.2
                    
Install as a Cake Tool

Universal.Common.Formats.Kiwi

Library for reading and writing the Kiwi schema-based binary serialization format (the format Figma uses for .fig files, clipboard payloads, and its live document protocol).

Kiwi is schema-driven and self-describing: a schema (its enums, structs, and messages) is itself encoded in Kiwi's own binary form, so a file can travel with the exact schema it was written against. This library decodes and encodes that binary schema, then dynamically decodes and encodes struct/message/enum data against it - there is no need to generate C# types at compile time for each schema you consume.

Quickstart

byte[] binarySchema = File.ReadAllBytes("schema.bkiwi");
KiwiSchema schema = KiwiSchema.Decode(binarySchema);

byte[] data = File.ReadAllBytes("message.bin");
KiwiObject document = schema.DecodeObject("Document", data);

string name = (string)document["name"];
object[] children = (object[])document["children"];

To construct and write your own data against a schema:

KiwiObject point = new KiwiObject("Point");
point["x"] = 1.5f;
point["y"] = -2.25f;

byte[] encoded = schema.EncodeObject("Point", point);

Verified byte-for-byte against the official evanw/kiwi reference implementation (the kiwi-schema npm package), including its own test-suite fixtures.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Universal.Common.Formats.Kiwi:

Package Downloads
Universal.Common.Formats.Fig

Reads and writes Figma .fig file containers and their Kiwi-encoded document data.

Universal.Operative.Sdk.Figma

Local Figma file authoring and inspection tools plus Figma REST tools for Universal.Operative.

Universal.Design.Figma

Projects resolved Universal.Design systems to Figma variables and document nodes.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.2 396 8/23/2026
1.0.1 298 8/16/2026
1.0.0 141 8/14/2026

Preserves decoded message field order when writing.