Quick Start
The shortest path is: inspect the supported surface, add one component, and review the local files written into your app.
1. List the supported surface
pnpm dlx tailng listThis is the authoritative current ownable surface for the package version you are using.
2. Add a component
pnpm dlx tailng add button --cwd apps/my-appThe CLI resolves aliases, validates the target directory, writes the registry files, and prints the import hint for the generated component.
3. Review the generated files
apps/my-app/src/app/tailng-ui/button/
tng-press-primitive.ts
tng-button.ts
tng-button.html
tng-button.css
index.tsThese files are now owned by your app. TailNG does not manage later edits inside that folder.
4. Edit locally
From this point forward, treat the generated files like application code: refactor them, review them, theme them, and test them in the same workflow as the rest of your product.