基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill slopesniper命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
| name | slopesniper |
| description | Trade Solana tokens via Jupiter DEX with auto-execution and safety limits |
| metadata | {"clawdbot":{"requires":{"bins":["uv"],"env":["SOLANA_PRIVATE_KEY"]},"emoji":"🎯","primaryEnv":"SOLANA_PRIVATE_KEY","homepage":"https://github.com/maddefientist/SlopeSniper","install":[{"id":"uv-install","kind":"uv","package":"slopesniper-mcp","from":"git+https://github.com/maddefientist/SlopeSniper.git#subdirectory=mcp-extension","bins":["slopesniper-mcp","slopesniper-api"],"label":"Install SlopeSniper via uv"}]}} |
| user-invocable | true |
| homepage | https://github.com/maddefientist/SlopeSniper |
Trade Solana meme coins and tokens using natural language. Just tell me what you want to do.
| You say | What happens |
|---|---|
| "Check my status" | Shows wallet balance and current strategy |
| "Buy $25 of BONK" | Purchases BONK tokens |
| "Sell half my WIF" | Sells 50% of WIF position |
| "What's pumping?" | Scans for opportunities |
| "Is POPCAT safe?" | Runs rugcheck analysis |
| "Set aggressive mode" | Changes trading strategy |
Set your wallet key in Clawdbot config:
{
"skills": {
"entries": {
"slopesniper": {
"apiKey": "your_solana_private_key_here"
}
}
}
}
Say "check my status" to verify setup
Start trading! Just describe what you want in plain English
| Strategy | Max Trade | Auto-Execute | Safety Checks |
|---|---|---|---|
| Conservative | $25 | Under $10 | Required |
| Balanced | $100 | Under $25 | Required |
| Aggressive | $500 | Under $50 | Optional |
| Degen | $1000 | Under $100 | None |
Say "set conservative mode" or "use aggressive strategy" to change.
You: "Buy $20 of BONK"
↓
[1] Resolve BONK → mint address
[2] Check rugcheck score
[3] Get Jupiter quote
[4] Auto-execute (under threshold)
↓
Result: "Bought 1.2M BONK for $20. Tx: solscan.io/tx/..."
For trades above your auto-execute threshold, you'll be asked to confirm first.
buy $X of TOKEN - Purchase tokenssell $X of TOKEN - Sell tokenssell X% of TOKEN - Sell percentage of holdingscheck status / am I ready? - Wallet and config statusprice of TOKEN - Current pricesearch TOKEN - Find token by namecheck TOKEN / is TOKEN safe? - Safety analysisset MODE strategy - Change trading modewhat's my strategy? - View current limitswhat's trending? - Find hot tokensscan for opportunities - Look for tradeswatch TOKEN - Add to watchlistFor direct tool invocation:
# Check status
uv run --directory {baseDir}/../mcp-extension python -c "
from slopesniper_skill import get_status
import asyncio; print(asyncio.run(get_status()))
"
# Quick trade
uv run --directory {baseDir}/../mcp-extension python -c "
from slopesniper_skill import quick_trade
import asyncio; print(asyncio.run(quick_trade('buy', 'BONK', 25)))
"
| Variable | Required | Description |
|---|---|---|
SOLANA_PRIVATE_KEY | Yes | Your wallet's base58 private key |
SOLANA_RPC_URL | No | Custom RPC (defaults to public) |
JUPITER_API_KEY | No | For higher rate limits |