一个可以媲美百度搜索的中文搜索引擎,其效果会让你惊艳,而且是免费的,完全不需要百度千帆API KEY。三引擎并行(搜狗+百度+360),100%摘要覆盖,URL解析,5种搜索模式。
AdvisoryAudited by Static analysis on May 10, 2026.
Overview
No suspicious patterns detected.
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.
Searches may run through an automated browser and could trigger search-engine limits, CAPTCHAs, or terms-of-service issues.
The skill intentionally uses browser automation/anti-detection to query search engines instead of an official API. This is disclosed and aligned with the search purpose, but it is a sensitive automation pattern users should understand.
Star Search 通过 Camofox 反检测浏览器实现免费、多引擎、高质量的中文搜索
Use it only for ordinary web searches, avoid logged-in or sensitive browsing contexts, and respect the search engines' usage terms.
Installing or running an unverified local browser-control service could expose the user's local environment if the service is unsafe or misconfigured.
The skill depends on a separately installed local Camofox service, and the service source/version is not supplied in the install spec. This is purpose-aligned, but the user must trust that external component.
- **Camofox 服务**(运行在 localhost:9377) ... `cd /path/to/camofox-browser && npm start &`
Install Camofox only from a trusted source, keep it bound to localhost, pin or verify versions where possible, and review its permissions.
Private or sensitive search terms may be visible to the local Camofox service and to Sogou, Baidu, or 360.
Search terms are sent through a local Camofox REST service and then to third-party search engines. That is expected for this skill, but it defines an external data flow.
CAMOUFOX_URL = "http://localhost:9377" ... "url_template": "https://www.sogou.com/web?query={q}&ie=utf8"Do not search for secrets, credentials, or highly sensitive private information; use a trusted local Camofox instance.
The browser-control service may remain running until the user stops it.
The ampersand starts the Camofox service in the background. This is documented and user-directed, not hidden self-persistence, but it can keep browser automation available after the immediate task.
`cd /path/to/camofox-browser && npm start &`
Stop the Camofox process when it is no longer needed and avoid exposing its port beyond localhost.
