Perplexity Search
AdvisoryAudited by Static analysis on Apr 30, 2026.
Overview
No suspicious patterns detected.
Findings (0)
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.
The skill can make AIsa API calls under your account credential, which may affect account usage or quota.
The client reads an AIsa API key from the environment and uses it as a bearer token for the intended API requests.
self.api_key = api_key or os.environ.get("AISA_API_KEY") ... "Authorization": f"Bearer {self.api_key}"Use a dedicated or least-privileged AIsa key if available, keep it out of logs, and monitor API usage.
Anything included in the search query may be shared with the external AIsa/Perplexity service.
The user query and any optional system instruction are packaged as messages and sent to the external AIsa API.
BASE_URL = "https://api.aisa.one/apis/v1" ... body = {"model": model, "messages": messages}Avoid sending secrets, private documents, or sensitive personal data in queries unless you are comfortable with the provider handling that content.
