openpencil/packages/kiwi
2026-07-01 12:56:45 +03:00
..
scripts refactor(kiwi): move FIG GUID helpers 2026-06-30 10:50:39 +03:00
src fix(kiwi): export EXCLUDE booleans as XOR 2026-06-30 10:51:05 +03:00
tests refactor(kiwi): move FIG GUID helpers 2026-06-30 10:50:39 +03:00
package.json chore(tools): harden package and dependency checks 2026-07-01 12:56:45 +03:00
README.md test(packages): smoke Kiwi package subpaths 2026-06-30 10:51:05 +03:00
tsconfig.json refactor(kiwi): consume standalone Kiwi package 2026-06-30 10:49:14 +03:00
tsconfig.test.json feat(kiwi): scaffold standalone Kiwi package 2026-06-30 10:48:47 +03:00
tsdown.config.ts chore(tools): harden package and dependency checks 2026-07-01 12:56:45 +03:00

@open-pencil/kiwi

Scene-graph-agnostic Kiwi runtime utilities for OpenPencil.

This package owns pure Kiwi schema parsing, Figma Kiwi schema data, low-level Figma message encode/decode, FIG Kiwi container helpers, GUID formatting, and raw .fig parse helpers. .fig import/export policy stays in @open-pencil/core: SceneGraph conversion, raw metadata invalidation, component/instance interpretation, and app/CLI document I/O are not part of this package.

Installation

bun add @open-pencil/kiwi

Package-local checks

cd packages/kiwi
bun run check

Package scripts:

  • bun run test — package-local Bun tests for schema runtime, Figma schema guards, codec, container, parse, GUID, and variable bindings
  • bun run typecheck — type-checks src, tests, and package scripts
  • bun run build — builds the distributable dist entrypoints
  • bun run smoke:dist — imports built output and exercises the public API
  • bun run check — runs typecheck, tests, build, and dist smoke in sequence

Schema runtime

import { compileSchema, parseSchema, validateSchema } from '@open-pencil/kiwi/schema-runtime'

const schema = parseSchema(`
message Point {
  float x = 1;
  float y = 2;
}
`)

validateSchema(schema)
const codec = compileSchema(schema)
const bytes = codec.encodeMessage({ x: 12, y: 24 })
const point = codec.decodeMessage(bytes)

Figma Kiwi codec

import { createNodeChangesMessage, encodeMessage, initCodec } from '@open-pencil/kiwi/fig/codec'

await initCodec()

const message = createNodeChangesMessage(1, 1, [
  {
    guid: { sessionID: 1, localID: 1 },
    phase: 'CREATED',
    type: 'RECTANGLE',
    name: 'Card',
    size: { x: 320, y: 180 }
  }
])

const bytes = encodeMessage(message)

Boolean operation payloads use Figma's Kiwi enum names. SceneGraph EXCLUDE is a core-level concept and should be serialized as Kiwi XOR before calling the low-level codec.

FIG Kiwi containers

import { buildFigKiwi, parseFigKiwiChunks } from '@open-pencil/kiwi/fig/container'

const container = buildFigKiwi(new Uint8Array([1, 2, 3]))
const chunks = parseFigKiwiChunks(container)

Raw .fig parsing

import { parseFigBytes } from '@open-pencil/kiwi/fig/parse'

const parsed = await parseFigBytes(await Bun.file('design.fig').arrayBuffer())

for (const canvas of parsed.canvases) {
  console.log(canvas.name, canvas.nodeChanges.length)
}

parseFigBytes() returns structural NodeChange data, blobs, images, schema bytes, and container metadata. Use @open-pencil/core for converting that data into an editable SceneGraph.

GUID helpers

import { guidToString, stringToGuid } from '@open-pencil/kiwi/fig/guid'

const id = guidToString({ sessionID: 1, localID: 42 })
const guid = stringToGuid('1:42')

Public subpaths

  • @open-pencil/kiwi
  • @open-pencil/kiwi/schema-runtime
  • @open-pencil/kiwi/fig
  • @open-pencil/kiwi/fig/codec
  • @open-pencil/kiwi/fig/container
  • @open-pencil/kiwi/fig/guid
  • @open-pencil/kiwi/fig/parse

@open-pencil/kiwi must not import @open-pencil/core, #core/*, app code, Vue code, CLI code, or MCP code.