SkillKit

Terminal UI

Interactive keyboard-driven interface for managing skills

Terminal UI

The TUI provides an interactive, keyboard-driven interface for managing skills with visual browsing, searching, and installation capabilities.

Launch

skillkit ui
# or just
skillkit

Framework

Built on modern technologies:

  • @opentui/react - Terminal rendering
  • React 19.0.0 - Component architecture
  • Bun 1.2.0+ - Runtime requirement

Screens

ScreenKeyPurpose
HomehEntry point dashboard with quick navigation
BrowsebSkill repository browser with search
Marketplacem15,000+ skills with categories
InstallediLocal skill management
RecommendrAI-powered suggestions
TranslatetFormat conversion
ContextcProject context management
SyncsSynchronize to agents

Keyboard Navigation

Global Shortcuts

KeyAction
hGo to Home
bGo to Browse
mGo to Marketplace
iGo to Installed
rGo to Recommend
tGo to Translate
cGo to Context
sGo to Sync
/Open Help
qQuit TUI

List Navigation

KeyAction
j or Move down
k or Move up
EnterSelect/activate
EscGo back
/Enter search mode

Search Mode

KeyAction
/Enter search mode
TypeFilter list
EnterConfirm search
EscExit search

Screen Details

Home Screen

Dashboard with:

  • Quick navigation shortcuts
  • Recent activity
  • System status

Browse Screen

Repository browser with:

  • Search functionality
  • Pagination
  • Quality indicators
  • Animation phases for smooth loading

Installed Screen

Manage local skills:

  • Enable/disable skills
  • Quality grades (A-F)
  • Live search filtering
  • Status icons: enabled, disabled

Marketplace Screen

Browse 15,000+ skills:

  • Category filtering
  • Featured skills
  • 3-phase animation loading
  • Quality scoring

Recommend Screen

AI-powered suggestions:

  • Project analysis
  • Confidence scoring
  • Progress tracking
  • Match percentages

Visual Indicators

Quality Grades

GradeScoreColor
A90-100Green
B80-89Green
C70-79Yellow
D60-69Red
FBelow 60Red

Status Icons

IconMeaning
Enabled
Disabled
Claude Code
Cursor
Codex
Gemini
OpenCode

Theme System

The TUI uses a monochromatic design with:

  • Consistent color coding
  • Terminal-compatible colors
  • Visual accents for selection
  • Muted states for disabled items

Architecture

State Management

loadSkills()
  → getSearchDirs(agentType)
  → findAllSkills(searchDirs)
  → evaluateSkillDirectory() for each
  → getQualityGrade(quality.overall)
  → SkillsState

Performance Optimizations

  • useMemo for filtered lists
  • useCallback for event handlers
  • Pagination limits rendered items
  • Progressive animation with phases

Animation Timing

AnimationDelay
Entrance100ms between phases
Spinner80ms interval
Progress200ms interval

Integration

The TUI integrates with @skillkit/core:

findAllSkills(searchDirs)      // Returns skill metadata
evaluateSkillDirectory(path)   // Quality metrics
getQualityGrade(score)         // 0-100 to A-F

Graceful Exit

The TUI handles shutdown gracefully:

  1. Unmounts React components
  2. Restores terminal state
  3. Cleans up signal handlers
  4. Exits process cleanly

Press q from Home screen or Ctrl+C to exit.

On this page