# Send WhatsApp FAQ Bot 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": "whatsapp-faq-bot",
    "name": "WhatsApp FAQ Bot",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/mariusfit/whatsapp-faq-bot",
    "canonicalUrl": "https://clawhub.ai/mariusfit/whatsapp-faq-bot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/whatsapp-faq-bot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=whatsapp-faq-bot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "_meta.json",
      "scripts/faqbot.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "whatsapp-faq-bot",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T20:37:54.818Z",
      "expiresAt": "2026-05-08T20:37:54.818Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=whatsapp-faq-bot",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=whatsapp-faq-bot",
        "contentDisposition": "attachment; filename=\"whatsapp-faq-bot-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "whatsapp-faq-bot"
      },
      "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/whatsapp-faq-bot"
    },
    "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/whatsapp-faq-bot",
    "downloadUrl": "https://openagent3.xyz/downloads/whatsapp-faq-bot",
    "agentUrl": "https://openagent3.xyz/skills/whatsapp-faq-bot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/whatsapp-faq-bot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/whatsapp-faq-bot/agent.md"
  }
}
```
## Documentation

### WhatsApp FAQ Bot

Build a searchable knowledge base from markdown files. Match incoming questions to the best FAQ answer using fuzzy text matching.

### Quick Start

# Initialize a new FAQ knowledge base
python scripts/faqbot.py init

# Add a FAQ entry interactively
python scripts/faqbot.py add -q "What are your business hours?" -a "We are open Monday to Friday, 9 AM to 6 PM CET."

# Import FAQs from a markdown file
python scripts/faqbot.py import faq-source.md

# Search for the best matching answer
python scripts/faqbot.py search "when are you open"

# List all FAQ entries
python scripts/faqbot.py list

# Export all FAQs to markdown
python scripts/faqbot.py export --format md -o faqs-export.md

# Export as JSON
python scripts/faqbot.py export --format json -o faqs.json

# Remove a FAQ entry by ID
python scripts/faqbot.py remove 3

# Get stats about the knowledge base
python scripts/faqbot.py stats

### Commands

CommandArgsDescriptioninitCreate a new empty knowledge baseadd-q QUESTION -a ANSWER [-t TAGS]Add a single FAQ entryimport<file.md>Import FAQs from markdown (H2 = question, body = answer)search<query> [--top N] [--threshold T]Find best matching answer(s)list[--tag TAG]List all FAQ entriesremove<id>Remove a FAQ entryexport[--format md|json] [-o FILE]Export knowledge basestatsShow knowledge base statistics

### Markdown Import Format

## What are your business hours?
We are open Monday to Friday, 9 AM to 6 PM CET.
Weekend support is available via email only.

## How do I reset my password?
Go to Settings > Account > Reset Password.
You will receive an email with a reset link.

## What payment methods do you accept?
We accept:
- Credit/debit cards (Visa, Mastercard)
- PayPal
- Bank transfer (EU only)

Each H2 heading becomes a question, the body below becomes the answer.

### Search Scoring

Uses TF-IDF-like fuzzy matching on question text
Returns confidence score (0.0 to 1.0)
Default threshold: 0.3 (adjustable with --threshold)
Returns top 3 matches by default (adjustable with --top)

### Integration with OpenClaw

This skill is designed to work as a WhatsApp FAQ bot. When a user asks a question, the agent can use the search command to find the best match and respond automatically. Configure it in your cron or agent system prompt.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mariusfit
- Version: 1.0.0
## 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-05-01T20:37:54.818Z
- Expires at: 2026-05-08T20:37:54.818Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/whatsapp-faq-bot)
- [Send to Agent page](https://openagent3.xyz/skills/whatsapp-faq-bot/agent)
- [JSON manifest](https://openagent3.xyz/skills/whatsapp-faq-bot/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/whatsapp-faq-bot/agent.md)
- [Download page](https://openagent3.xyz/downloads/whatsapp-faq-bot)