Intelligent Search Agent
PassAudited by ClawScan on May 1, 2026.
Overview
The skill is a coherent external search client, with the main considerations being trust in the unknown source, protection of the AISA API key, and avoiding sensitive queries because prompts and URLs are sent to AIsa-backed services.
This appears suitable for search and research use if you trust the publisher and the AIsa service. Before installing, confirm you are comfortable giving the skill access to an AISA_API_KEY and sending search prompts, URLs, and research questions to external APIs.
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.
It may be harder for a user to independently verify the code origin or update history before installing.
The skill includes a Python client but the registry metadata does not identify a source repository or provenance beyond the listed homepage.
Source: unknown
Install only if you trust the publisher or registry entry, and review the included script before use.
Anyone or any agent using this skill with that environment variable can make requests under the user's AIsa API credential.
The client reads AISA_API_KEY from the environment and uses it as a bearer token for all API requests.
self.api_key = api_key or os.environ.get("AISA_API_KEY") ... "Authorization": f"Bearer {self.api_key}"Use a dedicated, least-privilege API key where possible, keep it out of prompts and logs, and rotate it if exposure is suspected.
Search prompts, research questions, and URLs may leave the local agent environment and be processed by external services.
User-supplied queries, and optionally system-style instructions, are sent to an external AIsa API gateway for Perplexity-style answer generation.
BASE_URL = "https://api.aisa.one/apis/v1" ... messages.append({"role": "user", "content": query}) ... data={"model": model, "messages": messages}Avoid sending secrets, private documents, or confidential internal URLs as search queries unless that is acceptable under the provider's data-handling terms.
