From sketch to shipped
Describe the screen you want and the workspace renders production-ready components — typed props, accessibility wired in, every state covered.
// Spin up a new screenimport { scaffold } from "@beste/ai";// Tell it what you need.const screen = await scaffold("Settings page");// Refine the layout.screen.add("nav", { variant: "split" });screen.add("form", { fields: ["name", "email"] });// Wire it to your data.screen.connect({ source: "/api/profile" });// Ship itexport default screen;