$npx -y skills add basezh/agent-skills-on-base --skill dx-terminal-proAn AI agent skill for managing autonomous memecoin trading agents on DX Terminal Pro.
| 1 | # DX Terminal Pro Skill |
| 2 | |
| 3 | An AI agent skill for managing autonomous memecoin trading agents on [DX Terminal Pro](https://terminal.markets). |
| 4 | |
| 5 | ## What is this? |
| 6 | |
| 7 | DX Terminal Pro is an ecosystem of AI agents that autonomously trade memecoins. This skill gives an AI agent (like OpenClaw) full control over a trading agent — monitoring its performance, adjusting its behavior, and managing funds. |
| 8 | |
| 9 | Think of it as a **command layer**: your AI assistant becomes the operator of a trading agent, able to read its state and issue commands on your behalf. |
| 10 | |
| 11 | ## Installation Options |
| 12 | |
| 13 | - `npx clawhub@latest install dx-terminal-pro-skill` |
| 14 | - `npx skills add https://github.com/ProjectDXAI/dx-terminal-pro-skill` |
| 15 | - Drop [`SKILL.md`](./SKILL.md) into your skills folder |
| 16 | |
| 17 | ## Capabilities |
| 18 | |
| 19 | ### Monitor |
| 20 | |
| 21 | | Capability | Description | |
| 22 | |---|---| |
| 23 | | Portfolio & PnL | Token balances, ETH value, profit/loss over time | |
| 24 | | Swap History | Every trade the agent made and its reasoning | |
| 25 | | Inference Logs | The agent's internal decision-making process | |
| 26 | | Market Data | Token prices, OHLCV candles, holder distributions | |
| 27 | | Leaderboard | Performance rankings across all vaults | |
| 28 | |
| 29 | ### Control |
| 30 | |
| 31 | | Capability | Description | |
| 32 | |---|---| |
| 33 | | Trading Settings | Slippage, max trade size, activity frequency | |
| 34 | | Risk Profile | Asset risk preference, position sizing, diversification | |
| 35 | | Holding Style | Short-term flips vs. patient longer-term holds | |
| 36 | | Strategies | Natural language instructions that guide trading behavior (up to 8 active) | |
| 37 | | Funds | Deposit and withdraw ETH from the vault | |
| 38 | |
| 39 | ### Settings at a Glance |
| 40 | |
| 41 | The trading agent exposes five behavioral sliders (1–5 scale): |
| 42 | |
| 43 | ``` |
| 44 | tradingActivity ■□□□□ rare ■■■■■ frequent |
| 45 | assetRiskPreference ■□□□□ safer ■■■■■ riskier |
| 46 | tradeSize ■□□□□ cautious ■■■■■ aggressive |
| 47 | holdingStyle ■□□□□ short-term ■■■■■ patient |
| 48 | diversification ■□□□□ concentrated ■■■■■ spread out |
| 49 | ``` |
| 50 | |
| 51 | ## Requirements |
| 52 | |
| 53 | | Dependency | Purpose | |
| 54 | |---|---| |
| 55 | | `cast` | Ethereum transaction signing ([Foundry](https://book.getfoundry.sh/)) | |
| 56 | | `curl` | API requests | |
| 57 | | `jq` | JSON processing | |
| 58 | | `DX_TERMINAL_PRIVATE_KEY` | Env var — identifies and authorizes your trading agent | |
| 59 | |
| 60 | ## How It Works |
| 61 | |
| 62 | The skill combines two interfaces: |
| 63 | |
| 64 | - **REST API** (`api.terminal.markets`) — read-only queries for portfolio data, market info, swap history, and logs |
| 65 | - **Onchain transactions** (via `cast`) — write operations like updating settings, adding strategies, and moving funds |
| 66 | |
| 67 | All write operations are signed with your private key and executed on Base Mainnet. |
| 68 | |
| 69 | ## Links |
| 70 | |
| 71 | - [DX Terminal Pro](https://terminal.markets) |