- Search across multiple registries and make the registry argument
optional: omit it to search every registry configured in components.json
(builtins like @shadcn excluded). Without a components.json or configured
registries, a clear usage error is printed.
- Add a --type filter (accepts "ui" or "registry:ui", comma-separated)
with validation against the known item types.
- Fetch registries concurrently with a capped worker pool, preserving
result order.
- Tolerate per-registry failures when searching all configured registries
(reported in a structured `errors` field); exit non-zero when every
registry fails. Usage errors print directly instead of routing through
handleError.
- MCP parity: optional registries (search-all), a `types` filter, and type
validation across the search/list/examples tools.
- Keep the public registry surface to `searchRegistries` and make it
self-contained (clears its own context, useCache defaults to false).
- Consolidate search formatting into registry/search, add the `errors`
field to searchResultsSchema, and update the skill docs.
* feat(registry): add @sora-ui to community registry directory
Co-authored-by: Cursor <cursoragent@cursor.com>
* feat(registry): rename @sora-ui to @soralabs in community registry directory
---------
Co-authored-by: Cursor <cursoragent@cursor.com>
Drop-in, themeable browser games for shadcn (Snake, 2048, Minesweeper, and
more) — each a single self-contained file with zero dependencies.
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* fix(v4): update homepage mobile demo fallback images
Replace registry dashboard screenshots with compressed CardsDemo captures and narrow the mobile bleed width to 140vw.
Co-authored-by: Cursor <cursoragent@cursor.com>
* fix(v4): remove container-wrapper padding on homepage
Use p-0 on the demo section wrapper so the mobile preview image aligns flush without extra horizontal inset.
Co-authored-by: Cursor <cursoragent@cursor.com>
* fix(v4): drop redundant md:p-0 on homepage wrapper
Co-authored-by: Cursor <cursoragent@cursor.com>
---------
Co-authored-by: Cursor <cursoragent@cursor.com>
The default button variant used [a]:hover, which only applies to anchor
elements. Buttons render as <button>, so hover had no effect on create
and in installed projects. Use hover:bg-primary/80 to match other styles.
Fixes#10798
Co-authored-by: Cursor <cursoragent@cursor.com>
* fix(cli): allow esbuild builds in Vite templates
* fix(cli): extend pnpm 11 build-script allowlists across app templates
- Add packages: [] to single-app pnpm-workspace.yaml so pnpm 9 does
not reject the file with "packages field missing or empty".
- Add astro-app, react-router-app, start-app, next-app workspace
yamls with the build-script allowlist each template needs
(esbuild, sharp, unrs-resolver as applicable).
- Set msw: false across all app allowlists so the registry component
install runs cleanly under pnpm 11 without executing msw's
service-worker postinstall.
- Add a scaffold test pinning the packages:[] + allowBuilds shape
so the parser keeps treating it as single-app.
* chore: changeset
* fix(templates): allow monorepo pnpm builds
* ci(templates): validate app workspace conversion
---------
Co-authored-by: shadcn <m@shadcn.com>
The dominik-ui registry entry accidentally dropped the opening brace for @blockus, leaving invalid JSON in both registry files.
Co-authored-by: Cursor <cursoragent@cursor.com>