Pond3r Skill - Query Onchain Data
Analysis
The skill is a coherent Pond3r data-query integration, but it uses a Pond3r API key and can send user-supplied SQL or SQL-file contents to Pond3r.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
querySql = readFileSync(sqlFile, "utf8").trim(); ... callTool("query", { dataset_id: datasetId, sql: querySql });The query script can read a user-specified local file and send its contents as the SQL query to Pond3r. This is useful for saved SQL files, but could leak unintended file contents if misused.
POST https://api.pond3r.xyz/v1/api/reports ... "schedule": "daily" ... Schedule Options - `daily`, `weekly`, `monthly`
The reference documentation includes a mutating API that can create scheduled reports. The included scripts do not call this endpoint, but the artifact documents an ongoing external action.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
const apiKey = requireEnv("POND3R_API_KEY"); ... Authorization: `Bearer ${apiKey}`The skill uses a Pond3r API key from the environment and transmits it to Pond3r for authentication. This is expected for the stated service integration, but it is still credentialed account access.
