Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

pump-swarm泵群

Agent Skill

pump-swarm 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

196

周安装

8

GitHub Stars

192

下载量

63
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pump-swarm(泵群)
来源仓库:https://github.com/alsk1992/cloddsbot
仓库路径:skills/pump-swarm
安装命令:
npx skills add https://github.com/alsk1992/cloddsbot --skill pump-swarm
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alsk1992/cloddsbot --skill pump-swarm

简介

用于查找、检索和筛选相关信息。pump-swarm 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在需要根据关键词或任务场景快速定位结果时使用。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装方式:通过 npx 从指定 GitHub 仓库添加技能。
  • 建议确认权限范围、维护状态及是否会触发联网或命令执行。

SKILL.md

Pump.fun Swarm Trading

Coordinate up to 20 wallets to execute synchronized trades on Pump.fun tokens.

Quick Start

# Set up wallets
export SOLANA_PRIVATE_KEY="your-main-wallet-key"     # wallet_0
export SOLANA_SWARM_KEY_1="second-wallet-key"        # wallet_1
export SOLANA_SWARM_KEY_2="third-wallet-key"         # wallet_2
# ... up to SOLANA_SWARM_KEY_20

# Optional
export SOLANA_RPC_URL="https://your-rpc.com"
export PUMPPORTAL_API_KEY="your-api-key"

Commands

Wallet Management

/swarm wallets              List all swarm wallets with addresses
/swarm balances             Fetch SOL balances from chain
/swarm enable <wallet_id>   Enable a wallet for trading
/swarm disable <wallet_id>  Disable a wallet

Trading

/swarm buy <mint> <sol> [options]      Buy with all enabled wallets
/swarm sell <mint> <amount|%> [opts]   Sell from wallets with positions

Position Management

/swarm position <mint>      Show cached token positions
/swarm refresh <mint>       Fetch fresh positions from chain (required before sell)

Execution Modes

ModeFlagBest ForDescription
Parallel--parallelSpeed (>5 wallets)All wallets execute simultaneously
Bundle--bundleAtomicity (≤5)Single Jito bundle, all-or-nothing
Multi-Bundle--multi-bundleAtomicity (6-20)Multiple Jito bundles in parallel
Sequential--sequentialStealthStaggered 200-400ms delays

Auto Mode Selection (Default)

  • 1 wallet → Parallel (direct submit)
  • 2-5 wallets → Single Jito Bundle
  • 6-20 wallets → Multi-Bundle (chunks of 5)

Other Options

OptionDescription
--preset <name>Apply a saved preset
--wallets <id1,id2>Use specific wallets only
--slippage <bps>Slippage tolerance (default: 500 = 5%)
--pool <pool>Pool: pump, raydium, auto (pumpfun only)
--dex <dex>DEX: pumpfun (default), bags, meteora
--pool-address <addr>Specific pool address (for Meteora)

Examples

# Buy 0.1 SOL worth on each enabled wallet (auto mode)
/swarm buy ABC123mint... 0.1

# Buy with specific wallets only
/swarm buy ABC123mint... 0.2 --wallets wallet_0,wallet_1

# Buy with a preset
/swarm buy ABC123mint... 0.1 --preset stealth

# Sell 100% with multiple Jito bundles (for >5 wallets)
/swarm sell ABC123mint... 100% --multi-bundle

# Sell 50% with staggered timing (stealth mode)
/swarm sell ABC123mint... 50% --sequential

# Sell with preset
/swarm sell ABC123mint... 100% --preset fast

# Check positions before selling
/swarm refresh ABC123mint...
/swarm position ABC123mint...

# Multi-DEX examples
/swarm buy ABC123mint... 0.1 --dex bags          # Buy on Bags.fm
/swarm buy ABC123mint... 0.1 --dex meteora       # Buy on Meteora DLMM
/swarm sell ABC123mint... 100% --dex bags        # Sell on Bags.fm

Execution Modes Deep Dive

Parallel (Default for >5 wallets)

  • Speed: All wallets submit simultaneously via Promise.all
  • Risk: No atomicity - some may succeed, others fail
  • Use when: Speed is priority, or bundles keep failing

Jito Bundle (Default for 2-5 wallets)

  • Atomic: All transactions succeed or all fail together
  • MEV-protected: No front-running between your own wallets
  • Cost: ~10,000 lamports tip per bundle
  • Limit: Max 5 transactions per bundle (Jito constraint)

Multi-Bundle (Recommended for 6-20 wallets)

  • Chunked: Splits wallets into groups of 5
  • Parallel bundles: All chunks submit simultaneously
  • Partial atomicity: Each chunk is atomic, but chunks are independent
  • Example: 12 wallets → 3 bundles of [5, 5, 2] wallets

Sequential (Stealth mode)

  • Staggered: 200-400ms random delay between wallets
  • Amount variance: ±5% to avoid detection patterns
  • Rate limited: 5 seconds minimum between trades per wallet
  • Use when: Want to avoid pattern detection

How It Works

Buy Flow

  1. Refreshes SOL balances from chain
  2. Filters wallets with sufficient balance (≥0.01 SOL + amount)
  3. Builds transaction for each wallet via PumpPortal API
  4. Signs all transactions locally
  5. Submits via selected execution mode
  6. Reports results per wallet

Sell Flow

  1. Fetches actual token balances from chain (critical!)
  2. Filters wallets with positions
  3. Calculates sell amount (% of position or exact)
  4. Builds and signs transactions
  5. Submits via selected execution mode
  6. Reports results per wallet

Safety Features

  • Balance check: Verifies sufficient SOL before buy
  • Position check: Fetches real token balances before sell
  • Max amount: Rejects buy amounts > 10 SOL per wallet
  • Confirmation timeout: 60 second timeout per transaction
  • Error reporting: Shows detailed errors per wallet
  • Bundle fallback: Failed bundles automatically retry as parallel

Configuration

Env VariableDescription
SOLANA_PRIVATE_KEYMain wallet (wallet_0)
SOLANA_SWARM_KEY_1..20Additional swarm wallets
SOLANA_RPC_URLCustom RPC endpoint (faster = better)
PUMPPORTAL_API_KEYPumpPortal API key (optional, for pumpfun)
BAGS_API_KEYBags.fm API key (required for bags DEX)

Multi-DEX Support

The swarm system supports trading across multiple DEXes:

DEXFlagBest ForRequires
Pump.fun--dex pumpfun (default)Memecoins, new launchesPUMPPORTAL_API_KEY (optional)
Bags.fm--dex bagsBags-launched tokensBAGS_API_KEY
Meteora--dex meteoraDLMM pools, concentrated liquidity-

Multi-DEX Examples

# Buy on Pump.fun (default)
/swarm buy ABC123... 0.1

# Buy on Bags.fm
/swarm buy ABC123... 0.1 --dex bags

# Buy on Meteora with specific pool
/swarm buy ABC123... 0.1 --dex meteora --pool-address <pool_address>

# Sell on Bags.fm with stealth preset
/swarm sell ABC123... 100% --dex bags --preset stealth

Notes

  • Default DEX is pumpfun for backward compatibility
  • Bags requires BAGS_API_KEY - will error if missing
  • Meteora can auto-discover pools or use a specific --pool-address
  • All execution modes (parallel, bundle, sequential) work with all DEXes
  • Presets work with all DEXes

Agent Tools (12)

ToolDescription
swarm_walletsList all swarm wallets
swarm_balancesRefresh SOL balances from chain
swarm_buyCoordinated buy across wallets (supports preset param)
swarm_sellCoordinated sell across wallets (supports preset param)
swarm_positionGet cached positions
swarm_refreshFetch fresh positions from chain
swarm_enableEnable a wallet
swarm_disableDisable a wallet
swarm_preset_saveSave a trading preset
swarm_preset_listList saved presets
swarm_preset_getGet preset details
swarm_preset_deleteDelete a preset

Scaling Notes

  • Max wallets: 20 (wallet_0 + SOLANA_SWARM_KEY_1..20)
  • Jito bundle limit: 5 txs per bundle (handled automatically)
  • Multi-bundle parallel: All bundles submit simultaneously
  • RPC recommendation: Use dedicated RPC for best performance
  • Tip amount: 10,000 lamports per bundle (~$0.002)

Presets

Save and reuse trading configurations across tokens and strategies.

Preset Commands

/swarm preset save <name> [options]   Save a preset
/swarm preset list [type]             List presets
/swarm preset show <name>             Show preset details
/swarm preset delete <name>           Delete a preset

Preset Save Options

OptionDescription
--type <type>Preset type: strategy, token, wallet_group
--desc "..."Preset description
--mint <addr>Token address (for token presets)
--amount <sol>Default SOL per wallet
--slippage <bps>Slippage in basis points
--pool <pool>Pool: pump, raydium, auto
--mode <mode>parallel, bundle, multi-bundle, sequential
--wallets <ids>Wallet IDs (for wallet_group presets)

Built-in Presets

NameModeSlippagePoolUse Case
fastparallel5%autoSpeed priority
atomicmulti-bundle5%autoAll-or-nothing execution
stealthsequential3%autoPattern avoidance
aggressiveparallel10%pumpHigh volatility tokens
safebundle2%autoConservative trading

Preset Examples

# Create a custom strategy preset
/swarm preset save my_stealth --type strategy --mode sequential --slippage 300

# Create a token preset for BONK
/swarm preset save bonk_entry --type token --mint DezXAZ... --slippage 1000 --amount 0.1

# Create a wallet group preset
/swarm preset save top5 --type wallet_group --wallets wallet_0,wallet_1,wallet_2,wallet_3,wallet_4

# List all presets
/swarm preset list

# List only strategy presets
/swarm preset list strategy

# Use preset in trade
/swarm buy ABC... 0.1 --preset my_stealth
/swarm sell ABC... 100% --preset fast

# Delete a preset
/swarm preset delete old_preset

Preset Types

TypePurpose
strategyReusable trading settings (mode, slippage, pool)
tokenToken-specific settings with saved mint address
wallet_groupNamed wallet combinations for specific trades

Troubleshooting

IssueSolution
Bundle keeps failingTry --parallel or check network congestion
Positions not showingRun /swarm refresh <mint> first
Insufficient balanceCheck with /swarm balances
Slow executionUse dedicated RPC via SOLANA_RPC_URL
Some wallets skippedWallet disabled or insufficient balance
Preset not foundCheck name with /swarm preset list

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.06%
按下载量换算23

Claude

29.11%
按下载量换算18

Cursor

18.54%
按下载量换算12

Gemini CLI

9.03%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills