tavily-search
Analysis
This appears to be a coherent Tavily web search integration, but users should knowingly provide a Tavily API key and avoid sending sensitive queries or URLs to the external service.
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.
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.
Provides web search functionality with AI-powered summarization optimized for RAG and question answering.
The skill is designed to retrieve and summarize web content for agent use; web pages and extracted content may contain untrusted instructions even though the skill does not tell the agent to obey them.
Source: unknown; Homepage: none
The package provenance is not documented in the registry metadata, although the provided artifacts include the relevant source files and no remote install step.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
Set it in your environment: `export TAVILY_API_KEY=your_api_key_here`
The skill requires a Tavily service credential, while the registry metadata lists no required env vars or primary credential; this is purpose-aligned but should be visible to users.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
BASE_URL = "https://api.tavily.com" ... response = requests.post(endpoint, json=payload, timeout=30)
The client sends the API key plus user-provided search queries or URLs to Tavily's external API, which is expected for a search provider integration.
