Web Search

AdvisoryAudited by Static analysis on Apr 30, 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.

What this means

Installing the skill may require trusting the current PyPI release of duckduckgo-search and its dependencies.

Why it was flagged

The skill relies on a third-party PyPI package installed without a version pin or lockfile. This is central to the stated search function, but it creates a normal supply-chain dependency users should recognize.

Skill content
pip install duckduckgo-search
Recommendation

Install from a trusted Python environment and consider pinning or reviewing the package version for controlled or production use.

What this means

Search terms may reveal interests, research topics, or sensitive subjects to the external search service or network path.

Why it was flagged

The script passes the user's query to the DuckDuckGo search client. This is expected for a web search tool, but it means search terms are shared with an external provider.

Skill content
results = list(ddgs.text(
                    keywords=query,
                    region=self.region,
                    safesearch=self.safe_search,
Recommendation

Avoid using confidential secrets, private personal data, or sensitive internal information as search queries unless sharing them with the external search provider is acceptable.