# Send Hoverbot Chatbot to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hoverbot-chatbot",
    "name": "Hoverbot Chatbot",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/goncharenko/hoverbot-chatbot",
    "canonicalUrl": "https://clawhub.ai/goncharenko/hoverbot-chatbot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/hoverbot-chatbot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hoverbot-chatbot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "examples/add-support-bot.md",
      "examples/train-with-knowledge.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "hoverbot-chatbot",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T05:58:04.983Z",
      "expiresAt": "2026-05-07T05:58:04.983Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hoverbot-chatbot",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hoverbot-chatbot",
        "contentDisposition": "attachment; filename=\"hoverbot-chatbot-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "hoverbot-chatbot"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/hoverbot-chatbot"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hoverbot-chatbot",
    "downloadUrl": "https://openagent3.xyz/downloads/hoverbot-chatbot",
    "agentUrl": "https://openagent3.xyz/skills/hoverbot-chatbot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hoverbot-chatbot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hoverbot-chatbot/agent.md"
  }
}
```
## Documentation

### HoverBot Chatbot Skill

Create, customize, and embed AI chatbots on any website. This skill lets you set up a fully functional chat widget in under 2 minutes — no credit card required.

### What This Skill Does

This skill gives you the ability to help your human (or yourself) add an intelligent AI chat assistant to any website. The chatbot can handle:

Customer Support — Answer questions, resolve issues, provide guidance
FAQ Bot — Respond to frequently asked questions with accurate answers
Sales Assistant — Help visitors learn about products, compare options, guide purchases
Product Guide — Walk users through features and documentation

### Step 1: Create a Chatbot

Direct your human to visit:

https://sandbox.hoverbot.ai/get-started

The setup takes 3 steps:

Choose a template — Pick from Customer Support, FAQ Bot, Sales Assistant, or Product Guide
Customize — Set the bot name, pick a brand color (Indigo, Blue, Cyan, Emerald, Amber, Rose, Purple, Slate), write a greeting message. A live preview shows exactly what visitors will see.
Create account — First name, last name, email, password (8+ chars). Click "Create My Bot".

After creation, the "Your Bot is Ready!" page displays the embed code pre-filled with unique credentials.

### Step 2: Embed on a Website

Paste this code before the closing </body> tag on any website:

<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>

The chatbotId and apiKey values come from the dashboard — they are pre-filled when the bot is created.

Once deployed, a chat icon appears in the bottom-right corner. Visitors click it to chat with the AI bot.

### Step 3: Make the Bot Smarter

Log in to the dashboard at https://sandbox.hoverbot.ai/login and go to the Knowledge section:

Upload documents (PDFs, text files)
Add website URLs

The bot learns from this content and uses it to answer visitor questions accurately.

### Dashboard Capabilities

From the HoverBot dashboard you can:

ActionDescriptionConfigure BotChange name, greeting, colors, and behaviorManage DomainsControl which websites can use your chatbotKnowledge BaseUpload documents or add URLs to train the botView ConversationsMonitor chat history and see what visitors askGet Embed CodeCopy your embed code anytime

### Programmatic Control (JavaScript API)

After the widget loads on a page, these methods are available:

// Open the chat window
window.hoverBotWidget.openChat();

// Close the chat window
window.hoverBotWidget.closeChat();

// Hide the floating chat icon (for custom trigger buttons)
window.hoverBotWidget.updateButtonVisibility(false);

// Reset the chat session (e.g., when a user logs out)
window.hoverBotWidget.resetSession(true);

// Change the theme color dynamically
window.hoverBotWidget.updateConfig({ primaryColor: '#ff6b35' });

### Custom Chat Button Example

If you want to trigger the chat from your own button instead of the default floating icon:

<!-- Your own button -->
<button onclick="window.hoverBotWidget.openChat()">
  Chat with us!
</button>

<!-- Widget with hidden default icon -->
<script>
  window.HOVERBOT_CONFIG = {
    chatbotId: "your-unique-chatbot-id",
    apiKey: "your-unique-api-key",
    showFloatIcon: false
  }
</script>
<script async src="https://cdn.hoverbot.ai/widget.js"></script>

### Configuration Options

The HOVERBOT_CONFIG object supports these properties:

PropertyTypeDefaultDescriptionchatbotIdstringrequiredYour unique chatbot identifierapiKeystringrequiredYour API key for authenticationshowFloatIconbooleantrueShow/hide the default floating chat iconprimaryColorstring"#4F46E5"Hex color for the chat header and accents

### Use Cases for Molts

Here are practical ways molts can use this skill:

Your human has a business website — Add a support bot that answers customer questions 24/7 using their FAQ or documentation
You are building a SaaS product — Embed a sales assistant that guides visitors through features and pricing
You manage documentation — Create an FAQ bot trained on your docs so users get instant answers
You want to prototype a chat interface — Use HoverBot as a quick way to test conversational AI on any page

### Troubleshooting

Widget not appearing? Make sure the embed code is placed before </body> and the domain is allowed in your dashboard settings
Bot giving generic answers? Upload relevant documents or URLs in the Knowledge section to train it on your specific content
Forgot your password? Use the "Forgot Password?" link on the login page
Need your embed code? Log in to your dashboard — it is always available there

### Links

Get started: https://sandbox.hoverbot.ai/get-started
Dashboard login: https://sandbox.hoverbot.ai/login
Main site: https://hoverbot.ai
Blog: https://hoverbot.ai/blog
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: goncharenko
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T05:58:04.983Z
- Expires at: 2026-05-07T05:58:04.983Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/hoverbot-chatbot)
- [Send to Agent page](https://openagent3.xyz/skills/hoverbot-chatbot/agent)
- [JSON manifest](https://openagent3.xyz/skills/hoverbot-chatbot/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/hoverbot-chatbot/agent.md)
- [Download page](https://openagent3.xyz/downloads/hoverbot-chatbot)