Next.js — сборка приложений из JSON-спецификации

★ 8.1 · web-development

Next.js Development is a Claude Code skill that converts JSON specifications into full Next.js applications — with routing, layouts, server-side rendering, and SEO metadata — using the @json-render/next package. Reach for it when you need to spin up a multi-page app from an AI-generated spec, when the application structure is defined declaratively and must be reproduced without handwriting every route, or when you want a single JSON source of truth for pages, navigation, and metadata. The stack consists of @json-render/core, @json-render/react, and @json-render/next, installed via npm; the server entry (@json-render/next/server) exports createNextApp, matchRoute, resolveMetadata, and collectStaticParams; the client entry exports NextAppProvider, PageRenderer, and Link. Static and dynamic Next.js route patterns ([slug], [...path], [[...path]]) are supported alongside reusable layouts with a Slot component, async server-side data loaders, global state, and OpenGraph metadata. Pages render as async Server Components and hydrate on the client. The direction is JSON-to-app generation, not parsing or exporting an existing Next.js project into JSON. Works with TypeScript projects on the Next.js App Router; not the right fit if your app is already written by hand and you are not using a JSON spec as the structural source.