Skills eolas
Trade perpetual futures and send social updates via EOLAS DEX. Place and manage orders on Orderly Network, post updates to Telegram or X/Twitter.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/albertech2005/eolas-openclaw-mcp" ~/.claude/skills/openclaw-skills-eolas && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/albertech2005/eolas-openclaw-mcp" ~/.openclaw/skills/openclaw-skills-eolas && rm -rf "$T"
manifest:
skills/albertech2005/eolas-openclaw-mcp/SKILL.mdsource content
EOLAS Skill
Connect your OpenClaw agent to the EOLAS perpetuals exchange (perps.eolas.fun) and social tools.
Setup
1. Install the EOLAS MCP servers (required):
npm install -g eolas-edge-mcp eolas-reach-mcp
2. Install this plugin:
openclaw plugins install eolas-openclaw-mcp
3. Add to
:~/.openclaw/openclaw.json
{ "plugins": { "allow": ["eolas-openclaw-mcp"], "entries": { "eolas-openclaw-mcp": { "enabled": true, "config": { "telegramBotToken": "optional - for Telegram messaging", "creatorBidApiKey": "optional - for X/Twitter posting", "replicateApiToken": "optional - for image generation" } } } } }
All config keys are optional — only add what you need. No keys are stored in code; they live in your local OpenClaw config only.
Credential storage: Trading account credentials are stored locally at
~/.openclaw/eolas/keychain.json on first use. No credentials are sent anywhere except to the EOLAS API (api.orderly.org).
Trading
- "What markets are available on EOLAS?"
- "Show me the BTC funding rate"
- "Long ETH with $20, 3% stop loss, 6% take profit"
- "Show my open positions"
- "Close my BTC position"
- "What is my account balance?"
- "Scan markets for the best opportunity"
Social
- "Send a Telegram message: BTC just hit $X"
- "Post a tweet about this trade"
- "Get my latest Twitter mentions"
- "Generate an image for this signal"
Tools
Trading (13 tools via EOLAS Edge → Orderly Network, Base mainnet)
— list all marketseolas_get_markets
— price, funding rate, open interesteolas_get_market_info
— account balanceeolas_get_account_balance
— open positionseolas_get_positions
— order historyeolas_get_orders
— OHLCV dataeolas_get_tradingview_candles
— market or limit ordereolas_place_order
— order with take profit + stop losseolas_place_bracket_order
— cancel an ordereolas_cancel_order
— close all positionseolas_close_all_positions
— deposit or withdraw USDCeolas_manage_funds
— scan markets for setupseolas_screen_assets
— swap tokens on Baseeolas_swap_token_on_uniswap
Social (16 tools via EOLAS Reach)
— send to Telegrameolas_send_telegram_message
— read Telegram messageseolas_get_telegram_updates
— post on X/Twittereolas_create_twitter_post
— reply to a tweeteolas_reply_to_twitter_post
— read mentionseolas_get_twitter_mentions
— generate image via Replicateeolas_generate_image
— EOLAS branded imageeolas_generate_brand_image
— generate videoeolas_generate_seedance_video
— merge video clipseolas_merge_videos
— add reference imageeolas_add_reference_image
— list reference imageseolas_list_reference_images
— add brand templateeolas_add_brand_template
— list brand templateseolas_list_brand_templates
— delete brand templateeolas_delete_brand_template
— list fontseolas_list_available_fonts
— nano banana imageeolas_generate_nano_banana_image
Links
- EOLAS DEX: https://perps.eolas.fun
- Plugin on npm: https://npmjs.com/package/eolas-openclaw-mcp
- EOLAS Docs: https://eolas.gitbook.io/eolas
- Source: https://github.com/Albertech2005/eolas-openclaw-mcp