Skip to content
kitn AI/UI

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

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 MessageSkills from @kitn.ai/ui and pass a skills prop instead.

Badges wrap horizontally when they overflow — no extra layout work needed.

PropertyTypeDefaultNotes
skills [] The active skills to badge. Set as a JS property.

This element wraps these SolidJS components — reach for them directly when you need finer control than the props expose.

MessageSkills