web-search-engine

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a straightforward web-search helper, but users should remember that search terms are sent to third-party search engines and returned snippets are untrusted web content.

This skill is reasonable for general web searches. Before installing, be comfortable with your search terms being sent to Bing, Baidu, 360 Search, or Sogou, and treat returned snippets as untrusted web content rather than instructions.

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.

What this means

Search terms may be visible to the selected third-party search provider.

Why it was flagged

The script sends the user-provided search keyword to external search engines; this is expected for the skill but means queries leave the local environment.

Skill content
const url = 'https://www.bing.com/search?q=' + k;
Recommendation

Do not use this skill for highly sensitive or private search terms unless you are comfortable sending them to the selected search engine.

What this means

A malicious or misleading search result could try to influence the agent if the agent over-trusts returned text.

Why it was flagged

The script returns scraped search-result text to the agent; web results are untrusted content and should not be treated as instructions.

Skill content
console.log(JSON.stringify(result));
Recommendation

Treat returned search snippets as reference material only, not as commands or authoritative instructions.

What this means

The skill may fail or behave differently on systems without a compatible Node runtime.

Why it was flagged

The skill documentation uses a Node command, but the metadata does not declare Node as a required binary; this is an under-declared runtime requirement rather than evidence of malicious behavior.

Skill content
Required binaries (all must exist): none
Recommendation

Ensure Node.js is available before using the skill, and review the included search.js file if runtime provenance matters to you.