
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
tambo-cli-test
Advanced tools
The Official CLI for tambo ui.
⚠️ Note: This project is currently in active development. APIs and features may change.
npx tambo init --full-send
This command will:
While you can install globally, we recommend using npx to ensure you're always using the latest version:
# Using npx (recommended)
npx tambo <command>
initInitialize Tambo in your Next.js project. Two modes available:
# Full setup - recommended for new projects
npx tambo init --full-send
# Basic setup - just API key configuration
npx tambo init
add <component-name>Add a Tambo component to your project:
npx tambo add message-thread
Available components:
message-thread-full - Full-screen chat interface with history and typing indicatorsmessage-thread-panel - Split-view chat with integrated workspacemessage-thread-collapsible - Collapsible chat for sidebarschat-thread - Message thread with grouping and timestampschat-input - Rich text inputmessage - Individual message display with content formattingcontrol-bar - Spotlight-style command palettethread-list - Organized chat thread navigationform - Dynamic form with validationinput-fields - Text inputsgraph - Interactive charts (line, bar, scatter, pie)When you add components, they'll be installed in your project following this structure:
your-next-app/
├── src/
│ ├── components/
│ │ └── ui/
│ │ ├── message-thread-full.tsx
│ │ └── ...
│ └── app/
│ └── layout.tsx # Add TamboProvider here
└── .env.local # Your API key configuration
The CLI will automatically create/update your .env.local file with:
NEXT_PUBLIC_TAMBO_API_KEY=your-api-key
After initialization, add the TamboProvider to your app/layout.tsx:
import { TamboProvider } from "tambo-ai/react";
export default function RootLayout({ children }) {
return (
<TamboProvider
tamboUrl="https://api.tambo.co"
apiKey={process.env.NEXT_PUBLIC_TAMBO_API_KEY ?? ""}
>
{children}
</TamboProvider>
);
}
For detailed documentation and examples, visit tambo.co/docs
This CLI is currently in active development. While core features are stable, you might encounter:
See demos of the components in action:
--> here <--
MIT License - see the LICENSE file for details.
We're building tools for the future of user interfaces. Your contributions matter.
Star this repo to support our work.
Join our Discord to connect with other developers.
Built by developers, for developers.
Because we believe the future of UI is generative and hyper-personalized.
FAQs
Tambo command-line tool
The npm package tambo-cli-test receives a total of 0 weekly downloads. As such, tambo-cli-test popularity was classified as not popular.
We found that tambo-cli-test demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.