Pump Fun

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

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

A mistaken or unintended invocation could cause real financial loss or public token creation.

Why it was flagged

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.

Skill content
Usage: `/pump-buy <mint_address> <amount_sol> [slippage]` ... `/pump-sell <mint_address> <amount|percentage> [slippage]` ... `/pump-launch <name> <symbol> <description> [dev_buy_sol]`
Recommendation

Require explicit user confirmation for each transaction, set maximum spend/slippage limits, and use a dedicated low-balance wallet.

What this means

Anyone or anything that mishandles this key could move wallet funds or authorize irreversible transactions.

Why it was flagged

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.

Skill content
`SOLANA_PRIVATE_KEY` - Your Solana wallet private key (base58 encoded)
Recommendation

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.

What this means

The user cannot verify from the supplied artifacts what code or dependencies would handle their private key or transactions.

Why it was flagged

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.

Skill content
Install dependencies:
   ```bash
   cd {baseDir}
   npm install
   ```
Recommendation

Publish the complete source/package files and lockfile, or avoid running setup until the implementation is reviewed.

What this means

A user may over-trust the skill’s private-key handling without being able to inspect how transactions are actually created and signed.

Why it was flagged

This is a strong security assurance, but the supplied artifacts include no implementation to verify local-only signing or key handling.

Skill content
The skill uses the Local Transaction API for maximum security (transactions are signed locally)
Recommendation

Treat the security claim as unverified until the complete implementation is available and reviewed.