Vercel shipped AI Elements 1.9 on March 12, 2026, with a new installable agent skill as the lead feature. Running `npx skills add vercel/ai-elements` packages the AI Elements component ecosystem into a format that compatible AI coding agents can install and reference at runtime — a distribution model where component knowledge travels with an agent's configuration rather than being retrieved from a vector store or static documentation portal.

The release adds three new components. `` renders JSX strings dynamically and handles streaming scenarios where AI-generated markup may be incomplete mid-stream, automatically closing unclosed tags in real time — a problem that existing streaming UI primitives handle inconsistently. `` extends the existing `` component by letting users capture and attach a screenshot of the current page as visual context for AI models, embedding multimodal input directly at the component level rather than pushing it to application code. The `` component gains an optional download button that exports conversation history as a Markdown file.

The CLI install pattern follows the convention that Shadcn/UI popularized for component distribution, adapted here for agent knowledge rather than source code. The closest structural analogue in the agent tooling space is Anthropic's Model Context Protocol, which exposes tool capabilities via server-based interfaces rather than installable packages; Vercel's skill trades server infrastructure for a simpler install step while staying tightly scoped to the React/JSX stack. The changelog was authored by Hayden Bleasel and Ben Sabic at Vercel. As of March 2026, neither CopilotKit nor Assistant UI had introduced a comparable skill layer for their component libraries.