YouTube SERP Scout (Rank + Discover)
Analysis
This appears to be a straightforward YouTube search helper that uses an AIsa API key and sends search queries to AIsa, with no destructive or persistent behavior shown.
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 metadata does not identify an upstream source repository or package origin. No suspicious install behavior is shown, but provenance is limited.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
self.api_key = api_key or os.environ.get("AISA_API_KEY") ... "Authorization": f"Bearer {self.api_key}"The client requires an AIsa API key and uses it as a bearer token for API requests. This is expected for the stated service integration and no hardcoded or logged credential is shown.
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.aisa.one/apis/v1" ... urllib.request.urlopen(req, timeout=60)
The skill sends search requests to the external AIsa API. This is central to the skill's purpose, but it means search terms and filters leave the local environment.
