Skills
kai-skills
A horizontal strip of skill badges — set a JS array or compose declarative <kai-skill> children to annotate a message with the tools it used.
- Shadow DOM
- Property or declarative children
- Badges wrap automatically
- 2 composition paths
Preview
Section titled “Preview”Assign the skills property after the element upgrades — arrays can’t be HTML attributes:
<kai-skills id="skills"></kai-skills><script type="module"> import '@kitn.ai/ui/elements'; document.getElementById('skills').skills = [ { id: 'web-search', name: 'Web Search' }, { id: 'code', name: 'Code' }, ];</script>- Declarative path — nest
<kai-skill id="…">Label</kai-skill>children directly; useful for server-rendered HTML with no JS wiring. - Mixed — when both are provided, prop items render first and declarative children are appended after.
- SolidJS — import
MessageSkillsfrom@kitn.ai/uiand pass askillsprop instead.
Examples
Section titled “Examples”Two Skills
Section titled “Two Skills”Multiple Skills
Section titled “Multiple Skills”Badges wrap horizontally when they overflow — no extra layout work needed.
Declarative Composition
Section titled “Declarative Composition”| Property | Type | Default | Notes |
|---|---|---|---|
| skills | | [] | The active skills to badge. Set as a JS property. |
Composed from
Section titled “Composed from”This element wraps these SolidJS components — reach for them directly when you need finer control than the props expose.
MessageSkills