Tavily Crypto Finance Search
Analysis
This is a straightforward Tavily search/extract wrapper; the main things to notice are its required Tavily API key and third-party search data flow.
Findings (2)
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 whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
key = os.environ.get("TAVILY_API_KEY") ... payload["api_key"] = keyThe script reads a Tavily API key from the environment and inserts it into Tavily API requests. This is expected for a Tavily integration, but it is still credential use that the user should be aware of.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
SEARCH_URL = "https://api.tavily.com/search" ... EXTRACT_URL = "https://api.tavily.com/extract"
User search queries and extract URLs are sent to Tavily's external provider endpoints. This is core to the skill's purpose, but it is a third-party data flow.
