lynx-ui
Helps coding agents use @lynx-js/lynx-ui components with curated references from the lynx-ui repository.
Use it when an agent needs to:
- choose the right lynx-ui component for a feature
- verify supported props, events, ref methods, exports, or type aliases
- adapt official examples into project code
- debug a component usage issue against the documented public API
- avoid inventing unsupported lynx-ui APIs from model memory
Installation
This installs the lynx-ui skill so compatible coding agents can load its routing guide and bundled references automatically.
What It Contains
lynx-ui is structured for progressive disclosure:
SKILL.md: entrypoint and workflow rules for the agentreference.md: component selection and routing guidereferences/index.md: included component coveragereferences/components/<component>/guide.md: usage patterns, composition guidance, and common pitfallsreferences/components/<component>/api.md: public API source of truthreferences/components/<component>/examples.md: concise implementation patterns
Recommended Workflow
Ask the agent to use lynx-ui before implementing lynx-ui code.
- Identify the concrete component or a small set of candidate components.
- Use
reference.mdwhen component selection is unclear. - Read the component
guide.mdfirst for usage patterns. - Read
api.mdwhen exact public surface details matter. - Read
examples.mdonly when an implementation pattern is needed.
The agent should prefer imports from @lynx-js/lynx-ui by default and treat api.md as the source of truth for public props, events, ref methods, and exported types.