components

Installation
SKILL.md

Tambo Components

Two component types: generative (AI creates on-demand) and interactable (pre-placed, AI updates).

Quick Start

// Generative: AI creates when needed
const components: TamboComponent[] = [
  {
    name: "WeatherCard",
    component: WeatherCard,
    description: "Shows weather. Use when user asks about weather.",
    propsSchema: z.object({ city: z.string(), temp: z.number() }),
  },
];
Related skills

More from tambo-ai/tambo

Installs
100
Repository
tambo-ai/tambo
GitHub Stars
11.2K
First Seen
Feb 5, 2026