{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/whatsapp-faq-bot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=whatsapp-faq-bot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "_meta.json",
      "scripts/faqbot.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/whatsapp-faq-bot",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "WhatsApp FAQ Bot",
        "body": "Build a searchable knowledge base from markdown files. Match incoming questions to the best FAQ answer using fuzzy text matching."
      },
      {
        "title": "Quick Start",
        "body": "# Initialize a new FAQ knowledge base\npython scripts/faqbot.py init\n\n# Add a FAQ entry interactively\npython scripts/faqbot.py add -q \"What are your business hours?\" -a \"We are open Monday to Friday, 9 AM to 6 PM CET.\"\n\n# Import FAQs from a markdown file\npython scripts/faqbot.py import faq-source.md\n\n# Search for the best matching answer\npython scripts/faqbot.py search \"when are you open\"\n\n# List all FAQ entries\npython scripts/faqbot.py list\n\n# Export all FAQs to markdown\npython scripts/faqbot.py export --format md -o faqs-export.md\n\n# Export as JSON\npython scripts/faqbot.py export --format json -o faqs.json\n\n# Remove a FAQ entry by ID\npython scripts/faqbot.py remove 3\n\n# Get stats about the knowledge base\npython scripts/faqbot.py stats"
      },
      {
        "title": "Commands",
        "body": "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"
      },
      {
        "title": "Markdown Import Format",
        "body": "## What are your business hours?\nWe are open Monday to Friday, 9 AM to 6 PM CET.\nWeekend support is available via email only.\n\n## How do I reset my password?\nGo to Settings > Account > Reset Password.\nYou will receive an email with a reset link.\n\n## What payment methods do you accept?\nWe accept:\n- Credit/debit cards (Visa, Mastercard)\n- PayPal\n- Bank transfer (EU only)\n\nEach H2 heading becomes a question, the body below becomes the answer."
      },
      {
        "title": "Search Scoring",
        "body": "Uses TF-IDF-like fuzzy matching on question text\nReturns confidence score (0.0 to 1.0)\nDefault threshold: 0.3 (adjustable with --threshold)\nReturns top 3 matches by default (adjustable with --top)"
      },
      {
        "title": "Integration with OpenClaw",
        "body": "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."
      }
    ],
    "body": "WhatsApp FAQ Bot\n\nBuild a searchable knowledge base from markdown files. Match incoming questions to the best FAQ answer using fuzzy text matching.\n\nQuick Start\n# Initialize a new FAQ knowledge base\npython scripts/faqbot.py init\n\n# Add a FAQ entry interactively\npython scripts/faqbot.py add -q \"What are your business hours?\" -a \"We are open Monday to Friday, 9 AM to 6 PM CET.\"\n\n# Import FAQs from a markdown file\npython scripts/faqbot.py import faq-source.md\n\n# Search for the best matching answer\npython scripts/faqbot.py search \"when are you open\"\n\n# List all FAQ entries\npython scripts/faqbot.py list\n\n# Export all FAQs to markdown\npython scripts/faqbot.py export --format md -o faqs-export.md\n\n# Export as JSON\npython scripts/faqbot.py export --format json -o faqs.json\n\n# Remove a FAQ entry by ID\npython scripts/faqbot.py remove 3\n\n# Get stats about the knowledge base\npython scripts/faqbot.py stats\n\nCommands\nCommand\tArgs\tDescription\ninit\t\tCreate a new empty knowledge base\nadd\t-q QUESTION -a ANSWER [-t TAGS]\tAdd a single FAQ entry\nimport\t<file.md>\tImport FAQs from markdown (H2 = question, body = answer)\nsearch\t<query> [--top N] [--threshold T]\tFind best matching answer(s)\nlist\t[--tag TAG]\tList all FAQ entries\nremove\t<id>\tRemove a FAQ entry\nexport\t[--format md|json] [-o FILE]\tExport knowledge base\nstats\t\tShow knowledge base statistics\nMarkdown Import Format\n## What are your business hours?\nWe are open Monday to Friday, 9 AM to 6 PM CET.\nWeekend support is available via email only.\n\n## How do I reset my password?\nGo to Settings > Account > Reset Password.\nYou will receive an email with a reset link.\n\n## What payment methods do you accept?\nWe accept:\n- Credit/debit cards (Visa, Mastercard)\n- PayPal\n- Bank transfer (EU only)\n\n\nEach H2 heading becomes a question, the body below becomes the answer.\n\nSearch Scoring\nUses TF-IDF-like fuzzy matching on question text\nReturns confidence score (0.0 to 1.0)\nDefault threshold: 0.3 (adjustable with --threshold)\nReturns top 3 matches by default (adjustable with --top)\nIntegration with OpenClaw\n\nThis 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": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mariusfit/whatsapp-faq-bot",
    "publisherUrl": "https://clawhub.ai/mariusfit/whatsapp-faq-bot",
    "owner": "mariusfit",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}