Duckduckgo Search
Analysis
This skill appears to do the advertised DuckDuckGo web search, with no credentials or persistence, but it sends search terms to DuckDuckGo and returns untrusted web snippets.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
output += f"## {i}. {title}\n\n" ... output += f"{snippet}\n\n"The script formats externally retrieved search titles and snippets into Markdown for the agent or user to read.
Source: unknown; Homepage: none
The package provides visible source code and no automatic install step, but the registry metadata does not identify an upstream source or homepage.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
self.base_url = "https://duckduckgo.com/html/"; self.json_api_url = "https://api.duckduckgo.com/"; params = {"q": query}The search query is sent to DuckDuckGo endpoints as part of the skill's normal operation.
