Better Tavily Search
Analysis
This appears to be a coherent Tavily web-search helper that uses a Tavily API key and external requests as expected, with only normal credential and data-sharing considerations.
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.
Source: unknown
The registry entry does not provide a known source repository, although the artifacts include the local Python helper and no install-time dependency script.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
Authentication is loaded by the script itself. Either of these is valid: - environment variable: `TAVILY_API_KEY` - `~/.openclaw/.env` containing `TAVILY_API_KEY=...`
The skill clearly requires and loads a Tavily API credential, including from a local OpenClaw environment file.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
API_BASE = os.environ.get("TAVILY_API_BASE", "https://api.tavily.com").rstrip("/")The helper sends requests to Tavily by default, with an environment-variable override for the API base URL.
