免费AI小暖电商客服智能体

AdvisoryAudited by Static analysis on May 12, 2026.

Overview

No suspicious patterns detected.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A poorly scoped integration could expose order details or allow lookups beyond the intended customer.

Why it was flagged

If implemented, the optional order-query tool can access customer order records using an order ID or phone number. This is expected for e-commerce support but involves customer/account data.

Skill content
"query_order", "description": "根据订单号或手机号查询订单信息"
Recommendation

Use least-privilege read access, verify the customer before lookup, and minimize or redact phone/order data in chats and logs.

What this means

If wired to backend tools, mistakes could create incorrect return/exchange tickets or affect order handling.

Why it was flagged

The optional return/exchange tool would mutate a support or order workflow if connected to real systems. This matches the customer-service purpose, and the prompt separately says sensitive refund/compensation operations need confirmation.

Skill content
"create_return", "description": "创建退换货工单"
Recommendation

Require explicit customer or operator confirmation for returns, refunds, and compensation, and keep audit logs for any backend changes.

What this means

Customer messages, order IDs, or phone numbers could be present in another session/model context.

Why it was flagged

The recommended workflow forwards customer messages into a spawned subagent session. This is disclosed and purpose-aligned, but it creates a separate agent context that may receive customer information.

Skill content
runtime: "subagent" ... 然后用 `sessions_send` 转发客户消息给该 session
Recommendation

Forward only the information needed for the support task, avoid unnecessary personal data, and close or manage subagent sessions according to your privacy policy.

What this means

Incorrect knowledge-base content could lead to wrong product information, policy statements, or customer promises.

Why it was flagged

The optional RAG extension would rely on retrieved knowledge-base content for customer answers. This is expected for product/FAQ support, but outdated or incorrect entries could influence responses.

Skill content
将商品数据 / FAQ / 售后政策导入向量数据库 ... 在回复前先检索相关知识
Recommendation

Use curated knowledge sources, keep policies updated, and add human review for sensitive commitments such as refunds or compensation.