阿里云的联网搜索
Analysis
This appears to be a straightforward Aliyun IQS web-search wrapper that uses the expected API key and shows no hidden or destructive behavior.
Findings (2)
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.
const url = 'https://cloud-iqs.aliyuncs.com/search/unified'; ... body: JSON.stringify(requestBody)
The script sends the user-provided search query to the declared Aliyun IQS endpoint, matching the advertised search purpose.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
if (process.env.ALI_IQS_API_KEY) { return process.env.ALI_IQS_API_KEY; } ... 'Authorization': `Bearer ${apiKey}`The skill uses an Aliyun API key from the environment or .env file as the authorization credential for API calls.
