skillet

PendingAudited by VirusTotal on May 12, 2026.

Overview

No VirusTotal analysis has been recorded yet. File reputation checks will appear here once the artifact hash has been scanned.

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

If the agent makes a mistake or the wallet file is exposed, the user could lose BNB or tokens sent to this wallet.

Why it was flagged

A funded blockchain private key gives whoever controls the agent or file the ability to sign irreversible transactions. This is high-impact credential authority and is not bounded in the provided artifacts.

Skill content
The agent needs one file that stores both the **private key** and **public address** so it can sign transactions. ... Default file location: `~/.config/bsc_agent/wallet.json`.
Recommendation

Do not fund this wallet with more than you can afford to lose. Require explicit per-transaction approval, use a fresh low-balance wallet, prefer testnet first, and make the skill declare all credential/config paths.

What this means

The agent could perform unintended or risky trades on mainnet, including swaps involving the wrong token or poor liquidity.

Why it was flagged

Broad trading authority across tokens and liquidity pairs is consistent with the stated purpose, but the provided artifacts do not show clear user confirmation, spend limits, token allowlists, or containment for high-impact swap actions.

Skill content
The agent is not limited to specific tokens — it can resolve token addresses and check which pairs have liquidity.
Recommendation

Add mandatory user confirmation for every swap, maximum spend and slippage limits, verified token-address allowlists, and a testnet-first workflow.

What this means

The agent may use the user's ClawChain authenticated session or credential file to register wallet data, creating account-level changes outside PancakeSwap itself.

Why it was flagged

The skill invokes an authenticated Chromia/ClawChain transaction using a local credential file. This may be purpose-related for event tracking, but it is another account authority not declared in the registry metadata.

Skill content
`chr tx register_evm_public_key ... --ft-auth --secret ~/.config/clawchain/credentials.json ... --await`
Recommendation

Require explicit user approval before using ClawChain credentials, document the exact account action, and declare the credential path and required permissions.

What this means

A compromised or unexpected package version could affect wallet generation or transaction signing.

Why it was flagged

Installing ethers is expected for blockchain wallet and transaction handling, but the instruction is unpinned and outside an install spec or lockfile.

Skill content
Prerequisite: Node.js 18+ with `ethers` (v6): `npm install ethers`
Recommendation

Install dependencies in an isolated project, pin exact versions, use a lockfile, and verify package provenance before generating or funding a wallet.