# Send Solana Sniper Bot to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "solana-sniper-bot",
    "name": "Solana Sniper Bot",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/srikanthbellary/solana-sniper-bot",
    "canonicalUrl": "https://clawhub.ai/srikanthbellary/solana-sniper-bot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/solana-sniper-bot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solana-sniper-bot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/jupiter-api.md",
      "references/raydium-pools.md",
      "scripts/setup.sh",
      "scripts/sniper.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/solana-sniper-bot"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/solana-sniper-bot",
    "downloadUrl": "https://openagent3.xyz/downloads/solana-sniper-bot",
    "agentUrl": "https://openagent3.xyz/skills/solana-sniper-bot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solana-sniper-bot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solana-sniper-bot/agent.md"
  }
}
```
## Documentation

### Solana Sniper Bot

Autonomous token sniper for Solana. Monitors Raydium and Jupiter for new liquidity pools, evaluates tokens using LLM-powered rugpull detection, and executes buy/sell orders via Jupiter aggregator.

### Prerequisites

Solana wallet with SOL for gas + trading capital (USDC or SOL)
Anthropic API key (uses Haiku for token evaluation ~$0.001/eval)
Helius or QuickNode RPC (free tier works, paid recommended for speed)

### 1. Install Dependencies

python3 {baseDir}/scripts/setup.sh

Or manually:

pip install solana solders httpx aiohttp python-dotenv

### 2. Configuration

Create .env:

SOLANA_PRIVATE_KEY=<base58-private-key>
LLM_API_KEY=<anthropic-api-key>
RPC_URL=https://api.mainnet-beta.solana.com
HELIUS_API_KEY=<optional-for-faster-monitoring>
BUY_AMOUNT_SOL=0.1
TAKE_PROFIT=2.0
STOP_LOSS=0.5

### 3. Deploy

cp {baseDir}/scripts/sniper.py /opt/sniper/
python3 /opt/sniper/sniper.py

### How It Works

Pool Monitor — Watches Raydium AMM for new liquidity pool creation events
Token Analysis — For each new pool, queries token metadata:

Mint authority (revoked = good)
Freeze authority (revoked = good)
LP burned/locked percentage
Top holder concentration
Contract verification status


LLM Risk Assessment — Sends token data to Claude Haiku for rugpull probability estimate
Auto-Buy — If risk score < threshold, buys via Jupiter aggregator for best price
Position Management — Monitors positions with take-profit and stop-loss triggers
Auto-Sell — Exits via Jupiter when TP/SL hit

### Risk Scoring

Each token gets scored 0-100 (lower = safer):

FactorWeightRed FlagMint authority25%Not revokedFreeze authority20%Not revokedLP lock20%< 80% lockedTop 10 holders15%> 50% supplyContract age10%< 1 hourLLM sentiment10%Negative assessment

Default buy threshold: risk score < 40

### Trading Parameters

Configurable in .env:

BUY_AMOUNT_SOL — Amount per snipe (default: 0.1 SOL)
TAKE_PROFIT — Exit multiplier (default: 2.0 = 100% gain)
STOP_LOSS — Exit multiplier (default: 0.5 = 50% loss)
MAX_POSITIONS — Max concurrent positions (default: 5)
MIN_LIQUIDITY — Minimum pool liquidity in USD (default: $5000)
SLIPPAGE_BPS — Slippage tolerance in bps (default: 500 = 5%)

### ⚠️ Security Considerations

Use a DEDICATED wallet with only what you're willing to lose
Memecoin trading is extremely high risk — most new tokens go to zero
Never use your main wallet's private key
Start with tiny amounts (0.01-0.1 SOL per trade)
Monitor actively — this is not a set-and-forget system
RPC rate limits — Free Solana RPC will miss fast launches. Use Helius/QuickNode for serious sniping.

### References

See references/jupiter-api.md for Jupiter aggregator API docs
See references/raydium-pools.md for pool monitoring details
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: srikanthbellary
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/solana-sniper-bot)
- [Send to Agent page](https://openagent3.xyz/skills/solana-sniper-bot/agent)
- [JSON manifest](https://openagent3.xyz/skills/solana-sniper-bot/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/solana-sniper-bot/agent.md)
- [Download page](https://openagent3.xyz/downloads/solana-sniper-bot)