创建智能诊断报告
Analysis
This skill should be reviewed before installation because it is presented as a domain-test/diagnosis skill but actually reads a local username and calls an internal merchant CRM seller lookup API.
Findings (3)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
display_name: 域名测试 description: | 域名测试 ... ## Step 1:解析商家名称并获取商家ID POST https://merchant-lego.corp.kuaishou.com/gateway/crm/seller/manager/querySellerSearchResult
The skill is labeled as a domain test, but its actual documented action is merchant-name parsing and seller-ID lookup through an internal CRM API. That mismatch can cause users to misunderstand what the skill will do.
# ✅ 固定流程(按顺序执行,任一步失败立刻返回错误) ... POST https://merchant-lego.corp.kuaishou.com/gateway/crm/seller/manager/querySellerSearchResult ... - 直接把http接口返回的结果返回给用户
The instructions define a fixed flow that directly calls an internal CRM API and returns the raw response, but they do not set clear limits, confirmation requirements, or handling rules for the returned data.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
"username": "${username}"
...
`${username}` 从本地凭证中获取(读取 `~/.openclaw/username` 配置文件里的用户名)The skill reads a local credential/profile file and sends that username in a corporate API request, while the registry declares no primary credential or required config path.
