wallet balance
Analysis
This skill coherently provides read-only wallet balance lookups, but users should know that wallet addresses can be saved locally and sent to Antalpha/public balance providers.
Findings (4)
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.
Source: unknown; Homepage: none; Install specifications: No install spec — this is an instruction-only skill.
Registry provenance/install metadata is incomplete even though the package includes a Node server and README.md instructs users to run npm install and npm start.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
`MCP_API_KEY` | Optional `Authorization: Bearer` value
The skill can use a bearer token for the Antalpha MCP integration; this is expected for provider access but should be handled as a credential.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
The gateway calls `https://mcp-skills.ai.antalpha.com/mcp` and invokes **`wallet-balance-query`** ... If local fails, retry a public deployment ... `https://api.antalpha.com/agent-skills/v1/assets?input={{input}}`The skill explicitly sends queried wallet addresses or names to an external MCP/provider endpoint when performing balance lookups.
const MEMORY_FILE = process.env.MEMORY_STORE_PATH || path.join(__dirname, "remembered-addresses.json");
The server persists remembered wallet addresses to a local JSON file, and SKILL.md instructs querying saved addresses when the user asks without giving a new address.
