@nvidia/foundations-react-core
v1.0.0
Published
A React implementation of Kaizen UI Foundations. This package is unstyled.
Downloads
19,366
Keywords
Readme
KUI Foundations - React Core
Core React components for Kaizen UI Foundations. Styles available on CDN.
Disclaimer
This package is published under the Apache 2.0 License to support NVIDIA products and projects that are distributed as open source. It is not intended for general public consumption, and we do not recommend adopting it outside of NVIDIA-affiliated projects.
We are not accepting external contributions at this time. Issues and pull requests from outside contributors will not be reviewed.
Installation
1. Install the package
pnpm add @nvidia/foundations-react-core2. Set up AI skills
pnpm exec kui-sync-skillsThis copies AI skill files to .agents/skills/kaizen-ui/ by default, giving LLMs full context on KUI components and design patterns. If the skill already exists in .agents/, .claude/, or .cursor/, it updates in place.
Options:
--dir <path>— write to a custom directory (e.g.--dir .claude)--force— overwrite even if the installed version already matches
3. Configure auto-sync
To keep skills up-to-date automatically when the package version changes, add to your prepare script:
{
"scripts": {
"prepare": "kui-sync-skills"
}
}