← All skills
Tencent SkillHub · Communication & Collaboration

WhatsApp FAQ Bot

Build and query a FAQ knowledge base from markdown files. Use when asked to create a FAQ bot, set up automatic answers, build a knowledge base, add FAQ entri...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Build and query a FAQ knowledge base from markdown files. Use when asked to create a FAQ bot, set up automatic answers, build a knowledge base, add FAQ entri...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, _meta.json, scripts/faqbot.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 6 sections Open source page

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.

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/faqbot.py Scripts
  • _meta.json Config