One API key. 70+ models. Route requests to GPT, Claude, Gemini, Qwen, Deepseek, Grok and more.
Analysis
This skill appears to do what it says: route user-supplied prompts to an external LLM gateway using an AISA API key.
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.
self.api_key = api_key or os.environ.get("AISA_API_KEY")The client reads an API key from the environment and uses it for authenticated requests. This is expected for an LLM gateway, but it is still credential use that users should understand.
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/v1"
The skill sends chat messages, model comparison prompts, and image-analysis requests to an external gateway endpoint. This matches the stated purpose, but user data leaves the local environment.
