globalsearch
PassAudited by VirusTotal on May 7, 2026.
Overview
Type: OpenClaw Skill Name: globalsearch Version: 1.0.0 The 'globalsearch' skill is a web search aggregator that performs parallel queries across multiple engines (Baidu, Google) via a third-party API (clb.ciglobal.cn). The code in SKILL.md and overall.md is transparent, well-documented, and includes explicit security and privacy warnings for the AI agent regarding sensitive data handling. No evidence of data exfiltration, malicious execution, or harmful prompt injection was found.
Findings (0)
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.
Search terms, including any sensitive wording the user includes, may be visible to or retained by the external provider.
The skill clearly discloses that user queries leave the local agent boundary and go to a third-party provider that may associate them with an account.
This skill sends the user’s search query to an external web search service at `https://clb.ciglobal.cn/web_search` ... Queries are transmitted to a third-party service and may be associated with your account
Use the skill only for searches you are comfortable sending to clb.ciglobal.cn, and redact personal, confidential, token, or internal information before searching.
Search usage may be tied to the API-key account, and misuse of the key could consume quota or expose account activity.
The skill requires a provider API key and sends it as an authentication header, which is expected for the service but still gives the skill account-linked access.
`GLOBAL_SEARCH_API_KEY`: API key obtained from https://clb.ciglobal.cn/apiKey/login ... Authentication: Required header `X-API-Key`
Store the key in a credential manager or environment variable, rotate it if exposed, and avoid sharing it in prompts, code snippets, or logs.
A broad search may send the same query through multiple source configurations when a narrower lookup would be sufficient.
Comprehensive mode can automatically fan a single query out across multiple search configurations, increasing exposure and provider-side logging compared with a minimal search.
For comprehensive search (default behavior), the skill will use the script from overall.md to perform 4 parallel API calls automatically
Prefer the minimum necessary search scope, and use comprehensive multi-source search only when the user clearly asks for broad coverage.
If the helper script is run, the user or agent may need to install dependencies and should confirm they come from trusted sources.
A Markdown file contains a runnable Python helper script with an aiohttp dependency, while the install metadata does not declare a package install step.
import aiohttp ... API_URL = "https://clb.ciglobal.cn/web_search" ... asyncio.run(main())
Review the script before running it, install dependencies from trusted package repositories, and consider documenting required dependencies in the skill metadata.
