If you're building code generators on top of json-render UI specs, this gives you the traversal and serialization primitives you need. You get utilities to walk spec trees depth-first, collect all referenced components and state paths, and serialize props into JSX-compatible strings with proper escaping. The serialization handles the annoying bits like knowing when to wrap values in braces versus quotes. It's framework-agnostic, so you can build exporters for Next.js, Remix, or whatever else. The API is straightforward: a handful of focused functions that do one thing each, which is exactly what you want when you're stitching together a code generator.
npx skills add https://github.com/vercel-labs/json-render --skill codegen