Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 776 Bytes

File metadata and controls

35 lines (22 loc) · 776 Bytes

AGENTS.md

Project guidelines for AI assistants.

Tambo AI Framework

This project uses Tambo AI for building AI assistants with generative UI and MCP support.

Documentation: https://docs.tambo.co/llms.txt

CLI Commands (Non-Interactive)

The Tambo CLI auto-detects non-interactive environments. Use these commands:

# Initialize (requires API key from https://console.tambo.co)
npx tambo init --api-key=sk_...

# Add components
npx tambo add <component> --yes

# List available components
npx tambo list --yes

# Create new app
npx tambo create-app <name> --template=standard

# Get help
npx tambo --help
npx tambo <command> --help

Exit codes: 0=success, 1=error, 2=requires flags (check stderr for exact command)