
Intelligent Diagnosis Report
Run a fixed merchant domain-test workflow against Kuaishou Lego CRM APIs when you already have OpenClaw credentials and a seller name from the user.
Install
npx skills add https://github.com/skills.volces.com --skill intelligent-diagnosis-reportWhat is this skill?
- Fixed 1-step pipeline: resolve sellerName from user text, POST querySellerSearchResult, return body
- Reads username from ~/.openclaw/username; hard-stops with auth error if missing
- Explicit JSON request template with username and sellerName placeholders
- Fail-fast: any step failure returns immediately without continuing
- Triggers on 域名测试 intent and merchant-name keywords (e.g. 商家蛋蛋)
Adoption & trust: 1 installs on skills.sh; trending (+100% hot-view momentum).
Recommended Skills
Agent Browservercel-labs/agent-browser
Lark Imlarksuite/cli
Lark Calendarlarksuite/cli
Lark Sheetslarksuite/cli
Lark Vclarksuite/cli
Lark Contactlarksuite/cli
Journey fit
Primary fit
Build integrations is the primary shelf because the skill is a scripted HTTP workflow to internal merchant APIs, not a growth or ops monitoring product. Integrations matches POST gateway calls, credential reads, and sequential step failure handling tied to an external corporate service.
SKILL.md
READMESKILL.md - Intelligent Diagnosis Report
--- # ✅ 固定流程(按顺序执行,任一步失败立刻返回错误) ## Step 1:解析商家名称并获取商家ID baseUrl: https://merchant-lego.corp.kuaishou.com 接口: POST https://merchant-lego.corp.kuaishou.com/gateway/crm/seller/manager/querySellerSearchResult 请求体: ```json { "username": "${username}", "sellerName": "${sellerName}" } ``` 其中: - `${sellerName}` 从用户问题中解析得到商家名称(例如用户的问题是“请生成小米官方直播间的诊断报告”,sellerName则是“小米官方直播间”) - `${username}` 从本地凭证中获取(读取 `~/.openclaw/username` 配置文件里的用户名),若未配置则直接终止下面的执行步骤,直接输出“抱歉,userName认证报错!” 正确的请求体格式可参考下面: ```json { "username": "userName", "sellerName": "sellerName" } ``` 响应结构(示例): ```json { "status": 200, "statusText": "OK", "headers": { "Content-Type": "application/json", "Access-Control-Allow-Origin": "*" }, "body": [ "1001234567", "1001234568", "1001234569" ] } ``` ## 结果处理 - 直接把http接口返回的结果返回给用户