Pump Fun
WarnAudited by ClawScan on May 10, 2026.
Overview
The skill’s purpose is clear, but it asks for a Solana private key and describes irreversible trading/token-launch actions without clear guardrails or reviewable implementation.
Review this carefully before installing. Only use a dedicated wallet with limited funds, verify the missing implementation and dependencies before entering any private key, and require manual confirmation for every buy, sell, or token-launch transaction.
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.
A mistaken or unintended invocation could cause real financial loss or public token creation.
These commands can spend SOL, sell tokens, or create a new public token, but the artifact does not define confirmation requirements, limits, dry runs, or rollback protections.
Usage: `/pump-buy <mint_address> <amount_sol> [slippage]` ... `/pump-sell <mint_address> <amount|percentage> [slippage]` ... `/pump-launch <name> <symbol> <description> [dev_buy_sol]`
Require explicit user confirmation for each transaction, set maximum spend/slippage limits, and use a dedicated low-balance wallet.
Anyone or anything that mishandles this key could move wallet funds or authorize irreversible transactions.
A raw Solana private key is full wallet-signing authority. Although relevant to trading, the artifacts do not show scoped permissions or reviewable code explaining how the key is handled.
`SOLANA_PRIVATE_KEY` - Your Solana wallet private key (base58 encoded)
Do not use a main wallet. Use a new trading wallet with limited funds, and only install after verifying the implementation that handles the key.
The user cannot verify from the supplied artifacts what code or dependencies would handle their private key or transactions.
The provided artifact set contains only SKILL.md and no package or source files, yet it instructs dependency installation. This is a provenance gap for a skill that requires a wallet private key.
Install dependencies:
```bash
cd {baseDir}
npm install
```Publish the complete source/package files and lockfile, or avoid running setup until the implementation is reviewed.
A user may over-trust the skill’s private-key handling without being able to inspect how transactions are actually created and signed.
This is a strong security assurance, but the supplied artifacts include no implementation to verify local-only signing or key handling.
The skill uses the Local Transaction API for maximum security (transactions are signed locally)
Treat the security claim as unverified until the complete implementation is available and reviewed.
