Dappier
Analysis
The skill is a straightforward Dappier API wrapper; it uses your Dappier API key and sends requested searches, including any addresses you provide, to Dappier with no hidden install, persistence, or local data access shown.
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 whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
const apiKey = (process.env.DAPPIER_API_KEY ?? "").trim(); ... Authorization: `Bearer ${apiKey}`The skill reads the declared Dappier API key and sends it as an authorization token for API requests, giving the skill authority to use that Dappier key/account.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Usage: stellar-ai.mjs "residential home address" ... body: JSON.stringify({ query })The Stellar AI tool is documented to accept a residential address and the script posts the user-supplied query to Dappier, creating an external provider data flow.
const message = String(data?.message ?? "").trim(); ... console.log(message);
Remote search/model output is printed directly into the agent’s context as result text; this is expected, but retrieved content can be misleading or instruction-like.
