Chat Ui
by @okaris
Chat UI building blocks for React/Next.js from ui.inference.sh. Components: container, messages, input, typing indicators, avatars. Capabilities: chat interf...
clawhub install chat-uiπ About This Skill
name: chat-ui description: "Chat UI building blocks for React/Next.js from ui.inference.sh. Components: container, messages, input, typing indicators, avatars. Capabilities: chat interfaces, message lists, input handling, streaming. Use for: building custom chat UIs, messaging interfaces, AI assistants. Triggers: chat ui, chat component, message list, chat input, shadcn chat," react chat, chat interface, messaging ui, conversation ui, chat building blocks
Chat UI Components
Chat building blocks from ui.inference.sh.
Quick Start
# Install chat components
npx shadcn@latest add https://ui.inference.sh/r/chat.json
Components
Chat Container
import { ChatContainer } from "@/registry/blocks/chat/chat-container"
{/* messages go here */}
Messages
import { ChatMessage } from "@/registry/blocks/chat/chat-message"
Chat Input
import { ChatInput } from "@/registry/blocks/chat/chat-input" handleSend(message)}
placeholder="Type a message..."
disabled={isLoading}
/>
Typing Indicator
import { TypingIndicator } from "@/registry/blocks/chat/typing-indicator"{isTyping && }
Full Example
import {
ChatContainer,
ChatMessage,
ChatInput,
TypingIndicator,
} from "@/registry/blocks/chat"export function Chat() {
const [messages, setMessages] = useState([])
const [isLoading, setIsLoading] = useState(false)
const handleSend = async (content: string) => {
setMessages(prev => [...prev, { role: 'user', content }])
setIsLoading(true)
// Send to API...
setIsLoading(false)
}
return (
{messages.map((msg, i) => (
))}
{isLoading && }
)
}
Message Variants
| Role | Description |
|------|-------------|
| user | User messages (right-aligned) |
| assistant | AI responses (left-aligned) |
| system | System messages (centered) |
Styling
Components use Tailwind CSS and shadcn/ui design tokens:
Related Skills
# Full agent component (recommended)
npx skills add inference-sh/skills@agent-uiDeclarative widgets
npx skills add inference-sh/skills@widgets-uiMarkdown rendering
npx skills add inference-sh/skills@markdown-ui
Documentation
Component docs: ui.inference.sh/blocks/chat
π‘ Examples
# Install chat components
npx shadcn@latest add https://ui.inference.sh/r/chat.json