One API key. 70+ models. Route requests to GPT, Claude, Gemini, Qwen, Deepseek, Grok and more.
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears to do what it says: route user-supplied prompts to an external LLM gateway using an AISA API key.
This looks purpose-aligned for a unified LLM routing skill. Before installing, confirm you trust the AIsa gateway, use a scoped or dedicated API key if possible, watch for costs, and avoid sending sensitive data unless you are comfortable with the gateway and downstream model providers receiving it.
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.
Anyone using the skill must provide an AISA API key, and requests may consume quota or incur charges on that account.
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.
self.api_key = api_key or os.environ.get("AISA_API_KEY")Use a dedicated API key with appropriate limits, monitor usage, and avoid sharing the key in prompts, logs, or screenshots.
Prompts, conversation content, function schemas, and image URLs supplied to the skill may be transmitted to the AIsa gateway and routed to downstream model providers.
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.
BASE_URL = "https://api.aisa.one/v1"
Do not send secrets, regulated data, or private files unless the gateway’s privacy, retention, and provider-routing policies meet your needs.
