Docs

Humation commands

Humation does not require a custom CLI to render avatars. These are the package-manager commands and inspection snippets that npm READMEs can link to.

Install React avatar rendering

Use this in Next.js, Vite, Remix, and other React apps.

Terminal
npm install @humation/react @humation/assets-humation-1

Install the SVG renderer

Use this when you need raw SVG output outside React.

Terminal
npm install @humation/core @humation/assets-humation-1

List available part names

Use this to discover names for selections, docs, tests, and prompts.

Terminal
node -e "import('@humation/assets-humation-1').then(({ humation1 }) => console.log(humation1.parts.map((part) => [part.selectionSlot, part.name].join(':')).join('\n')))"