Plugin Store is a Skills and MCP marketplace for AI coding assistants. It lets agents discover, install, update, and uninstall plugins — including on-chain trading strategies, DeFi protocol integrations, and developer tools — across Claude Code, Cursor, and OpenClaw.
npx skills add okx/plugin-storeOnce installed, the agent gains full access to the plugin marketplace through natural language or the commands below.
# List all available plugins
plugin-store list
# Search by keyword
plugin-store search <keyword>
# Show details for a plugin (description, chains, protocols, components)
plugin-store info <name># Install a plugin (interactive agent selection)
plugin-store install <name>
# Install to a specific agent
plugin-store install <name> --agent claude-code
# Install non-interactively (skip prompts, auto-detect agents)
plugin-store install <name> --yes
# Install skill component only (no binary)
plugin-store install <name> --skill-only
# Install MCP component only
plugin-store install <name> --mcp-only
# Uninstall from all agents
plugin-store uninstall <name>
# Uninstall from a specific agent
plugin-store uninstall <name> --agent claude-code# Update a specific plugin
plugin-store update <name>
# Update all installed plugins
plugin-store update --all
# Update the plugin-store CLI itself
plugin-store self-update# Show all installed plugins and their status
plugin-store installed
# Force refresh the registry cache
plugin-store registry update| Agent | Detection |
|---|---|
| Claude Code | ~/.claude/ exists |
| Cursor | ~/.cursor/ exists |
| OpenClaw | ~/.openclaw/ exists |
| Source | Meaning |
|---|---|
official |
Developed and maintained by Plugin Store |
dapp-official |
Published by the DApp project itself |
community |
Community contribution — install prompt includes a warning |
After installing a strategy plugin, the corresponding binary and skill are available immediately. Each strategy requires onchainos ≥ 2.0.0.
Monitors the OKX DEX trending ranking board every 10s. Applies a 25-point safety filter, scores momentum (0–125 pts), and executes trades with a 6-layer exit system.
strategy-ranking-sniper start --budget 0.5 --per-trade 0.05
strategy-ranking-sniper status
strategy-ranking-sniper sell-allScans pump.fun MIGRATED tokens every 10s. Applies a 22-point safety filter (dev rug zero-tolerance, bundler checks), detects 3-signal momentum, and trades with an 8-layer exit system.
strategy-memepump-scanner start
strategy-memepump-scanner analyze
strategy-memepump-scanner statusPolls OKX Signal API every 20s for SmartMoney / KOL / Whale buy signals. Applies a 17-point safety filter with cost-aware TP/SL, trailing stop, and session risk controls.
strategy-signal-tracker start
strategy-signal-tracker status
strategy-signal-tracker reportPerpetual futures and spot trading on Hyperliquid. 11 commands covering market data (no auth required) and order management (requires EVM_PRIVATE_KEY).
dapp-hyperliquid markets
dapp-hyperliquid price BTC
dapp-hyperliquid buy --symbol BTC --size 0.001 --price 70000 --leverage 10
dapp-hyperliquid positionsAll trading strategies involve significant financial risk. Always validate with
--dry-runbefore going live. Never deploy more capital than you can afford to lose entirely.
To submit a community plugin, open a PR adding an entry to registry.json. See existing entries for the required schema.
Apache-2.0