This is the React renderer for the json-render library that turns JSON specifications into live React component trees. You define a catalog with Zod schemas for props validation, wire up your actual React components, and then render JSON specs that reference them. It includes two-way state binding with `$bindState`, conditional rendering based on state paths, an event system that maps component events to actions, and built-in form validation. The `useBoundProp` hook handles the state sync for form inputs cleanly. Honestly most useful if you're building UI builders, design tools, or letting AI generate interfaces, since you're trading some developer ergonomics for the ability to serialize and dynamically render component trees. The type safety from catalog to components is solid though.
npx skills add https://github.com/vercel-labs/json-render --skill json-render-react