webdev-token-input

Installation
SKILL.md

Webdev Token Input

Build multi-value token/chip inputs (tags, filters, email recipients) on top of combobox autocomplete patterns.

Prerequisites

This skill builds on webdev-combobox-autocomplete. Start there for state model, ARIA patterns, keyboard navigation, and async suggestions.

Token State Model

Extends combobox state with token-specific properties:

interface TokenInputState extends ComboboxState {
  // Token-specific state
  tokens: FilterToken[];
  activeTokenIndex: number | null;  // For arrow-key navigation between tokens
}
Installs
2
Repository
ozten/skills
GitHub Stars
5
First Seen
Apr 12, 2026
webdev-token-input — ozten/skills