Installation
Prerequisites
Before installing, ensure you have the following:
Install shadcn/ui
First, you'll need to install and configure shadcn/ui in your project. Follow the installation guide at shadcn/ui documentation.
Installing Components
agents-ui-kit extends prompt-kit with additional components. You can install components from both libraries using the shadcn CLI.
Installing prompt-kit Components
For base AI interface components (chat, messages, code blocks, etc.):
Installing agents-ui Components
For agent-specific components (agent cards, memory bank, etc.):
Example Installation
Here's how to install commonly used components:
Usage
After installation, import and use the components in your project:
Project Structure
Components will be installed in the following structure:
components/
├── ui/ # shadcn/ui base components
├── prompt-kit/ # AI interface components
└── agents-ui/ # Agent-specific components
TypeScript Configuration
Ensure your tsconfig.json
includes the proper path aliases:
Next Steps
- Browse the component documentation to see all available components
- Check out the Agent Card component for building agent interfaces
- Explore the Memory Bank system for advanced state management
- Join our community for support and updates