QVerisAI

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.

What this means

The agent may call a wide range of QVeris-discovered external tools when a user request appears relevant.

Why it was flagged

This documents a broad dynamic tool-execution gateway. It is the stated purpose of the skill, but users should notice the breadth before allowing autonomous calls.

Skill content
Search and execute dynamic tools via QVeris API... covers weather, search, stocks, finance, economics, geolocation, AIGC, news, social media, health data, and thousands more.
Recommendation

For sensitive, costly, or high-impact tasks, ask the agent to show the selected tool and parameters before execution.

What this means

Anyone using the skill must trust QVeris with the API key and any usage charged to that key.

Why it was flagged

The script reads the QVeris API key from the environment and sends it as a bearer token to QVeris. This is expected for the integration, and the code does not show reads of other environment variables.

Skill content
const key = process.env.QVERIS_API_KEY; ... Authorization: `Bearer ${apiKey}`
Recommendation

Use a scoped, revocable QVeris API key, monitor usage, and rotate the key if you suspect misuse.

What this means

Queries, tool parameters, and results may be processed by QVeris and potentially downstream services selected through QVeris.

Why it was flagged

Execution parameters are sent to the QVeris API, which acts as a dynamic external tool gateway. This is disclosed and purpose-aligned, but it means user-supplied parameters leave the local environment.

Skill content
const BASE_URL = "https://qveris.ai/api/v1"; ... body: JSON.stringify({ search_id: searchId, parameters, max_response_size: maxResponseSize })
Recommendation

Avoid sending secrets, private personal data, or regulated information unless you have reviewed QVeris’s data handling and the specific tool being called.