← Back to Skills Marketplace
jimadara

创建智能诊断报告

by Jim Adara · GitHub ↗ · v1.0.12 · MIT-0
cross-platform ⚠ suspicious
521
Downloads
0
Stars
0
Active Installs
13
Versions
Install in OpenClaw
/install intelligent-diagnosis-report
Description
域名测试
README (SKILL.md)

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

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接口返回的结果返回给用户
Usage Guidance
这个技能看起来不是纯粹的“域名测试”工具:它会读取你电脑上的 ~/.openclaw/username 文件并把 username 和解析出的商家名称 POST 到一个内部公司域名(merchant-lego.corp.kuaishou.com)。如果你不是在该公司内网或不知道该接口的用途,不要安装或启用它。建议采取以下步骤:1) 向技能作者索要源码或更详尽的说明,确认为什么需要本地用户名以及接口的返回会包含什么敏感信息;2) 要求技能改为通过显式环境变量或由用户交互输入的方式提供凭证,而不是直接读取家目录文件;3) 在受控/隔离环境(沙箱或受限容器)中先测试该技能,观察其网络请求和返回内容;4) 若此技能用于企业内部,确认调用的域名和接口确实为可信内部服务并由你的组织授权。若你不确定其来源或用途,把它标记为不信任并避免在生产环境或包含敏感数据的机器上运行。
Capability Analysis
Type: OpenClaw Skill Name: intelligent-diagnosis-report Version: 1.0.12 The skill instructions in SKILL.md direct the agent to read a local configuration file (~/.openclaw/username) and transmit its contents to a hardcoded remote endpoint (https://merchant-lego.corp.kuaishou.com). While this appears to be an internal tool for querying merchant IDs, the automated access to the local filesystem and the exfiltration of identity data to a remote server represents a significant security risk and potential for unauthorized data collection.
Capability Assessment
Purpose & Capability
技能名和描述指向“域名测试/诊断报告”,但 SKILL.md 只包含一个调用内部商家搜索接口的步骤(merchant-lego.corp.kuaishou.com),没有任何关于实际域名检测或诊断的内容;读取本地用户名也与“域名测试”目的不匹配。总体上要求与声明目的不一致。
Instruction Scope
运行时指示代理读取本地文件 ~/.openclaw/username 以获取 username(若不存在则中止),并将 username 与解析出的 sellerName 一并 POST 到内部 API,然后将 HTTP 响应直接返回给用户。说明要求访问本地凭证文件并与公司内部域名通信,这超出了技能描述中应有的范围且未在技能元数据中声明。
Install Mechanism
该技能为纯说明型(无安装规范、无代码文件),因此不会在本地写入或安装额外软件 —— 就安装机制本身而言没有明显风险。
Credentials
registry metadata 未声明任何环境变量或主凭证,但运行指令要求读取用户主目录下的配置文件以获取认证信息(~/.openclaw/username)。未经声明的本地凭证访问是不成比例且未说明的权限请求。
Persistence & Privilege
技能没有设置 always:true,也没有安装程序或修改其他技能/全局配置的指令。默认的自主调用权限保持不变,没有额外持久化特权请求。
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install intelligent-diagnosis-report
  3. After installation, invoke the skill by name or use /intelligent-diagnosis-report
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.12
- 技能重命名为“域名测试”,中文显示为“域名测试” - 变更技能用途,从“智能诊断报告”改为仅做商家域名测试 - 修改触发词与例句,仅支持“域名测试”相关内容 - 流程仅包含解析商家并获取ID这一步,直接返回接口结果 - 服务接口地址和认证机制已变更:必须本地存在用户名配置,否则会直接报错 - 移除了诊断报告生成相关的所有说明、流程与输出
v1.0.11
No functional or content changes detected in this version. - No file modifications were made. - All logic, interface definitions, and documentation remain unchanged.
v1.0.10
- Updated report creation API request parameters to use only sellerName, sellerId, beginDate, and endDate. - beginDate is now calculated as endDate minus 30 days for consistent date comparison. - Clarified parameter filling rules and sample payload for diagnosis report creation. - Improved documentation to reflect the simpler, date-focused report generation process.
v1.0.9
No file changes detected for version 1.0.9. - No updates or modifications were made in this release. - Functionality and documentation remain unchanged.
v1.0.8
- No file changes detected in this version. - No updates or modifications applied since the previous version.
v1.0.7
No notable changes detected in this version. - No file changes were made compared to the previous version. - Functionality, usage rules, and output format remain unchanged.
v1.0.6
No file changes detected for version 1.0.6. - No updates or modifications were made in this version. - Functionality and documentation remain unchanged.
v1.0.5
No functional or logic changes in this release (no file changes detected). - Version bumped to 1.0.5; internally aligns with previous release (0.1.0). - No code or documentation updates included.
v1.0.4
No functional or content changes detected in this version. - No changes to code or documentation files. - Version remains the same. - Behavior and user impact are unchanged.
v1.0.3
Version 1.0.3 (no file changes detected): - No code or documentation updates; this version is functionally identical to the previous release. - No visible changes for users.
v1.0.2
No functional or file changes detected in this version. - No code or documentation updates were made. - SKILL.md and implementation remain unchanged from previous version.
v1.0.1
- Update API base URLs from https://baomai-merchant.corp.kuaishou.com and https://baomai-inf.corp.kuaishou.com to http://baomai-assistant.internal. - Simplify商家ID查询接口的请求和响应结构:仅返回sellerId组成的数组,并始终采用第一个sellerId。 - sellerId参数由managerId改为username,字段说明同步调整。 - 删除多商家选择交互流程,仅取查询结果首条记录作为目标商家。 - 其它业务流程未变,输出与错误处理方式保持一致。
v1.0.0
智能诊断报告技能首次发布。 - 支持通过商家名称一键生成近30天经营数据对比的诊断报告。 - 自动识别商家,如有多家可选,支持用户指定。 - 全流程固定:识别商家→计算日期→创建诊断报告并输出结构化结果。 - 明确错误处理,未找到商家或服务异常时友好提示原因。 - 默认本地凭证读取 managerId,保障灵活适配不同用户。
Metadata
Slug intelligent-diagnosis-report
Version 1.0.12
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 13
Frequently Asked Questions

What is 创建智能诊断报告?

域名测试. It is an AI Agent Skill for Claude Code / OpenClaw, with 521 downloads so far.

How do I install 创建智能诊断报告?

Run "/install intelligent-diagnosis-report" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 创建智能诊断报告 free?

Yes, 创建智能诊断报告 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 创建智能诊断报告 support?

创建智能诊断报告 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 创建智能诊断报告?

It is built and maintained by Jim Adara (@jimadara); the current version is v1.0.12.

💬 Comments