Advanced Searxng Search Skill
Analysis
The skill appears to be a coherent SearXNG search client, with ordinary privacy and provenance considerations before use.
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.
pip install searxng-skill # Not yet ready
The README indicates the pip package may not be ready, while other packaging files and SKILL metadata still reference pip/local installation. This is a provenance and packaging consistency issue rather than evidence of malicious behavior.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
return self.session.get(url, params=params, timeout=timeout, verify=self.config.verify_ssl)
Search parameters, including the user's query, are sent to the configured SearXNG instance. This is expected for the skill, but remote instances can observe submitted queries.
content=result.get("content", "")The skill returns external search result snippets as structured content. This is core functionality, but those snippets are untrusted web-derived text.
