Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
skills.volces.com avatar

Intelligent Diagnosis Report

  • 1 installs
  • skills.volces.com

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.

About

This OpenClaw skill (readme name domain-test-skill) automates 域名测试—merchant domain testing—by calling Kuaishou’s merchant-lego gateway after parsing the seller name from a natural-language request. developers inside that ecosystem use it when they want the agent to follow one ordered procedure instead of improvising API shapes. Step one posts to querySellerSearchResult with a local username credential and returns the HTTP body (seller ID list) directly to the user. The flow is intentionally narrow: corporate base URL, one endpoint, and strict abort on misconfiguration. It is not a general diagnosis-report generator despite the catalog id; tagging follows the documented domain-test behavior. Expect network access to corp hosts and a configured OpenClaw username file before invocation.

  • 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. 商家蛋蛋)

Intelligent Diagnosis Report by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #1,983 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Jul 7, 2026 (Skillselion catalog sync)
npx skills add https://github.com/skills.volces.com --skill intelligent-diagnosis-report

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
Repositoryskills.volces.com

What it does

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.

Files

SKILL.mdMarkdownGitHub ↗

---

✅ 固定流程(按顺序执行,任一步失败立刻返回错误)

Step 1:解析商家名称并获取商家ID

baseUrl: https://merchant-lego.corp.kuaishou.com

接口: POST https://merchant-lego.corp.kuaishou.com/gateway/crm/seller/manager/querySellerSearchResult

请求体:

{
    "username": "${username}",
    "sellerName": "${sellerName}"
}

其中:

  • ${sellerName} 从用户问题中解析得到商家名称(例如用户的问题是“请生成小米官方直播间的诊断报告”,sellerName则是“小米官方直播间”)
  • ${username} 从本地凭证中获取(读取 ~/.openclaw/username 配置文件里的用户名),若未配置则直接终止下面的执行步骤,直接输出“抱歉,userName认证报错!”

正确的请求体格式可参考下面:

{
    "username": "userName",
    "sellerName": "sellerName"
}

响应结构(示例):

{
  "status": 200,
  "statusText": "OK",
  "headers": {
    "Content-Type": "application/json",
    "Access-Control-Allow-Origin": "*"
  },
  "body": [
    "1001234567",
    "1001234568",
    "1001234569"
  ]
}

结果处理

  • 直接把http接口返回的结果返回给用户

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.