A ClawHub skill that lets any AI agent create, customize, and embed AI chatbots on websites using HoverBot.
npx clawhub@latest install hoverbot-chatbotTell your AI agent "add a chatbot to my website" and it handles everything:
- Pick a template -- Customer Support, FAQ, Sales Assistant, or Product Guide
- Customize -- name, brand color, greeting message with live preview
- Get embed code -- 4 lines of JavaScript, paste before
</body> - Train with your content -- upload PDFs or add URLs
No credit card. Setup takes under 2 minutes.
<script>
window.HOVERBOT_CONFIG = {
chatbotId: "your-unique-chatbot-id",
apiKey: "your-unique-api-key"
}
</script>
<script async src="https://cdn.hoverbot.ai/widget.js"></script>window.hoverBotWidget.openChat(); // Open chat
window.hoverBotWidget.closeChat(); // Close chat
window.hoverBotWidget.resetSession(true); // Reset conversation
window.hoverBotWidget.updateButtonVisibility(false); // Hide default icon
window.hoverBotWidget.updateConfig({ primaryColor: '#ff6b35' }); // Restyle| Template | Best For |
|---|---|
| Customer Support | Answering questions, resolving issues 24/7 |
| FAQ Bot | Knowledge-base Q&A from your docs |
| Sales Assistant | Product discovery, comparisons, purchasing |
| Product Guide | Feature walkthroughs, onboarding |
- Business websites -- Add a support bot that answers customer questions using your FAQ
- SaaS products -- Embed a sales assistant that guides visitors through features and pricing
- Documentation sites -- Create an FAQ bot trained on your docs for instant answers
- Prototyping -- Quickly test conversational AI on any page
- A website where you can edit HTML (to paste the embed code)
- An email address (to create a free HoverBot account)
MIT