solana-bundler-sniper-volume-bot
Analysis
This is openly a Solana trading automation skill, but it gives an agent broad authority to trade, transfer, drain wallets, and run automated market activity, so it needs careful review before installation.
Findings (5)
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.
**recover (emergency drain — sells everything, sweeps sol)** ... **vamp all (drain wallets — sells tokens, closes accounts, sweeps sol)**
The skill documents API operations that can sell all tokens, close accounts, sweep SOL, and move wallet funds. The artifacts do not pair these high-impact operations with mandatory human approval, amount limits, destination allowlists, or recovery safeguards.
if (currentMultiplier >= targetMultiplier) { ... "sell_percentage": 100 ... } ... // poll every 30 seconds
setInterval(monitorAndSell, 30_000)A documented copy-paste example runs a continuing monitor loop that can automatically sell 100% of matching positions. It is an example rather than installed code, but it shows an intended autonomous trading pattern.
Source: unknown; Homepage: none ... No install spec — this is an instruction-only skill.
The registry-level source and homepage are not populated even though the skill directs users to a financial API and requires a powerful API key. There is no executable code in this package, but provenance matters for financial automation.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
"source": "GANK_API_KEY env or skills.entries.gank.apiKey", "purpose": "API authentication", "required": true ... "API keys start with pb_ and authenticate all requests."
The skill requires a secret API key that authenticates every request to the trading and wallet-management API. That credential is powerful because the same API surface includes wallet transfers, sells, drains, launches, and bot sessions.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
base url: `https://gank.dev/api/v2` ... **list your wallets** `GET /wallets/user` ... **positions (all token holdings)** `GET /user/positions`
The skill sends wallet inventory, balances, positions, trading actions, token metadata, and related financial data to an external provider API. This is expected for the stated trading-terminal purpose, but it is sensitive.
