web-search

ReviewAudited by ClawScan on May 1, 2026.

Overview

This appears to be a legitimate browser-based web search skill, but it sends search terms to external providers and uses stealth/no-sandbox browser automation plus npm/browser downloads.

Before installing, verify the npm/Playwright dependencies, avoid sensitive search terms, and consider running the browser in a constrained environment or removing no-sandbox flags if not required. There is no artifact evidence of credential use, persistence, destructive actions, or unrelated data access.

Findings (4)

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.

What this means

Searches may be rate-limited, blocked, or conflict with website automation policies.

Why it was flagged

The skill configures browser automation with a stealth plugin intended to bypass anti-crawler detection. This aligns with the search-scraping purpose, but users should understand how it interacts with site bot defenses.

Skill content
// 注册 Stealth 插件以绕过反爬虫检测\nchromium.use(stealthPlugin());
Recommendation

Use the skill only where automated searching is permitted, keep search volume reasonable, and prefer official APIs when available.

What this means

A browser security issue would have less isolation than it normally would.

Why it was flagged

The script disables Chromium sandboxing while loading external web pages. Rendering web content is expected for this skill, but disabling the browser sandbox reduces containment if a browser exploit is encountered.

Skill content
args: ['--no-sandbox', '--disable-setuid-sandbox']
Recommendation

Run the skill in a constrained environment if possible, and remove the no-sandbox flags unless they are required by the local runtime.

What this means

Installing dependencies can introduce third-party code onto the local machine.

Why it was flagged

Setup requires downloading npm packages and a Chromium browser binary. This is expected for Playwright-based search, but package and browser binary provenance still matters.

Skill content
npm install playwright\nnpx playwright install chromium
Recommendation

Install from trusted registries, use the provided lockfile where possible, and keep Playwright/Chromium updated.

What this means

Sensitive or private search terms may be visible to external search providers.

Why it was flagged

The skill sends the user-provided keyword to multiple external search providers, including an automatic Quark fallback. This is disclosed and central to the purpose, but it means queries leave the local environment.

Skill content
同时获取 Google 和 Bing 的搜索结果...如果 Google 访问失败,自动使用夸克AI搜索替代
Recommendation

Avoid searching for secrets, private personal data, or confidential business terms unless you are comfortable sharing them with the selected search engines.