← 返回 Skills 市场
windy-001-crypto

AI Chatbot Service

作者 windy-001-crypto · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
517
总下载
0
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install ai-chatbot-v2
功能描述
智能客服系统,支持FAQ自动回复、意图识别、多轮对话
使用说明 (SKILL.md)

💬 AI Smart Customer Service 智能客服

基于LLM的智能客服系统,支持FAQ匹配、意图识别、多轮对话。

🎯 功能列表

核心功能

  • FAQ自动回复:预设知识库+智能匹配
  • 意图识别:自动判断用户意图(咨询/投诉/建议/转人工)
  • 多轮对话:支持上下文的多轮对话
  • 情绪检测:识别用户情绪(正面/中性/负面)
  • 知识库管理:支持添加/查询FAQ
  • 转人工:高优先级自动转人工提醒

支持的场景

  • 🛍️ 电商咨询(退货、快递、支付)
  • 💼 企业内部FAQ
  • 📞 技术支持
  • 🏥 基础咨询

📖 使用方法

基本语法

/ai-customer-service \x3C操作> [参数]

示例

1. 开始对话

/ai-customer-service chat 你好

2. 咨询问题

/ai-customer-service chat 如何退货?

3. 添加FAQ

/ai-customer-service add 你们支持7天无理由退货吗? 支持的,请在收到商品7天内申请退款。

4. 查看知识库

/ai-customer-service list

5. 查看统计

/ai-customer-service stats

6. 清空对话历史

/ai-customer-service clear

💬 对话示例

用户: 我想退货 AI: 您好!关于退货,请注意以下信息:

📦 退货政策:

  • 7天内无理由退货(商品未拆封)
  • 质量问题30天内可退换
  • 退货需保持原包装和配件完整

请问您是因为什么原因要退货呢?

  1. 商品质量问题
  2. 不喜欢/不想要了
  3. 尺寸/规格不合适
  4. 其他原因

用户: 质量问题 AI: 非常抱歉给您带来不便!质量管理保退换:

✅ 质量问题处理流程:

  1. 拍摄商品瑕疵照片
  2. 联系客服说明情况
  3. 我们会安排快递上门取件
  4. 收到商品后3天内退款

请问需要我帮您申请退货吗?

📚 内置知识库

问题 答案
你们支持7天无理由退货吗? 支持的,请在收到商品7天内申请退款。
运费由谁承担? 非人为损坏由商家承担,人为损坏需买家承担。
发货需要多长时间? 正常情况下24小时内发货,48小时内物流更新。
支持哪些支付方式? 支持微信、支付宝、银行卡、货到付款。
如何查询物流? 可以在"我的订单"中查看物流信息。
你们有实体店吗? 目前只支持线上购买,全国可配送。
可以修改订单地址吗? 未发货前可以修改,请联系客服处理。
退货地址在哪里? 退货地址:广东省深圳市宝安区xxx,联系电话:400-xxx-xxxx

🎯 意图识别

系统会自动识别以下意图:

意图 关键词 处理方式
退货 refund 退货、退款、不想要了 引导退货流程
物流 logistics 物流、快递、到哪里了 查询物流
支付 payment 支付、付款、怎么付 支付指引
投诉 complaint 投诉、差评、失望 转人工处理
建议 suggestion 建议、希望、能够 记录并反馈
问候 greeting 你好、hi、hello 友好回应

🎭 情绪分析

情绪 关键词 响应策略
😄 正面 谢谢、满意、太好了 感谢并积极回应
😐 中性 请问、我想知道 正常解答
😔 负面 生气、失望、太差了 道歉并转人工

⚙️ 配置选项

{
  "skills": {
    "entries": {
      "ai-customer-service": {
        "enabled": true,
        "config": {
          "autoReply": true,
          "transferThreshold": 3,
          "sentimentThreshold": -0.5
        }
      }
    }
  }
}

🚀 快速使用

直接告诉我:

  • "我想退货"
  • "物流到哪了"
  • "你们支持分期吗"
  • "我要投诉"
安全使用建议
This skill is coherent and appears to be a simple local Python chatbot: it needs python3 and runs the included script without contacting external services or requesting secrets. Before installing or using it in production, consider: (1) the source/author is unknown — review the code yourself or prefer a vetted source; (2) it stores conversation only in memory and has no access controls, so do not feed sensitive PII unless you accept that risk; (3) the intent/sentiment detection is simple keyword-based (not robust) — for real deployments you may need better NLP, persistence, logging, and privacy controls; and (4) if you later add integrations (databases, APIs, or cloud services), require appropriate credentials and audit those changes.
功能分析
Type: OpenClaw Skill Name: ai-chatbot-v2 Version: 1.0.0 The skill is classified as suspicious due to the `command-arg-mode: raw` specified in `SKILL.md` combined with the `ai_customer_service.py` script directly processing `sys.argv` without explicit input sanitization. While the current Python script does not contain immediately exploitable sinks (e.g., `os.system`, `eval`, file writes based on user input), this pattern represents a significant vulnerability risk. It's a flaw in input handling that could easily lead to shell injection or other command execution vulnerabilities if the script's logic were to change, even slightly, to execute or use user-controlled input in a more sensitive context.
能力评估
Purpose & Capability
Name/description (智能客服、FAQ、意图识别、多轮对话) match the provided SKILL.md and the included Python tool. The only required binary is python3, which is appropriate and proportional.
Instruction Scope
SKILL.md usage is limited to running the local command and managing the knowledge base. The instructions do not ask the agent to read unrelated files, environment variables, or transmit data to external endpoints.
Install Mechanism
No install spec; the skill is instruction+script only. That minimizes disk-write risk. The bundled Python file is plain source with no downloads or archive extraction.
Credentials
The skill requires no environment variables, no credentials, and no config paths. The behavior in code (in-memory FAQ DB and conversation history) matches that minimal footprint.
Persistence & Privilege
The skill does not request persistent presence (always:false) and does not modify other skills or system-wide settings. Conversation history is kept only in memory; no persistent storage or elevated privileges are used.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ai-chatbot-v2
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ai-chatbot-v2 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial version - FAQ, intent recognition, multi-turn chat
元数据
Slug ai-chatbot-v2
版本 1.0.0
许可证
累计安装 2
当前安装数 2
历史版本数 1
常见问题

AI Chatbot Service 是什么?

智能客服系统,支持FAQ自动回复、意图识别、多轮对话. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 517 次。

如何安装 AI Chatbot Service?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ai-chatbot-v2」即可一键安装,无需额外配置。

AI Chatbot Service 是免费的吗?

是的,AI Chatbot Service 完全免费(开源免费),可自由下载、安装和使用。

AI Chatbot Service 支持哪些平台?

AI Chatbot Service 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 AI Chatbot Service?

由 windy-001-crypto(@windy-001-crypto)开发并维护,当前版本 v1.0.0。

💬 留言讨论