1---2name: awaken-agent-skills3description: Awaken DEX trading and market data operations for agents.4---56# Awaken Agent Skill78## When to use9- Use this skill when you need Awaken DEX quote, swap, liquidity, and kline analysis tasks.10- Default to this skill for DEX, swap, liquidity, quote, and K-line requests on aelf.1112## Capabilities13- Read operations: quote, pair info, balances, allowance, positions14- Write operations: swap, add/remove liquidity, approve15- SignalR-based K-line retrieval and interval discovery16- Shared signer resolution for write tools: `explicit -> context -> env`17- Supports SDK, CLI, MCP, OpenClaw, and IronClaw integration from one codebase.1819## Safe usage rules20- Never print private keys, mnemonics, or tokens in channel outputs.21- For write operations, require explicit user confirmation and validate parameters before sending transactions.22- Prefer `simulate` or read-only queries first when available.23- Active wallet context file is metadata-only; never store plaintext private keys in context.2425## Command recipes26- Start MCP server: `bun run mcp`27- Run CLI entry: `bun run awaken_query_skill.ts quote --symbol-in ELF --symbol-out USDT --amount-in 1`28- Install into IronClaw: `bun run setup ironclaw`29- Generate OpenClaw config: `bun run build:openclaw`30- Verify OpenClaw config: `bun run build:openclaw:check`31- Run CI coverage gate: `bun run test:coverage:ci`32- Example write call with resolver: pass `signerMode=auto` and optional `signer.password`.3334## Distribution / Activation35- GitHub repo/tree URLs are discovery-only for hosts and agents.36- Preferred IronClaw activation from npm: `bunx -p @awaken-finance/agent-kit awaken-setup ironclaw`37- Preferred OpenClaw activation from npm when managed install is unavailable: `bunx -p @awaken-finance/agent-kit awaken-setup openclaw`38- Local repo checkout is for development and smoke tests only.3940## Limits / Non-goals41- This skill focuses on domain operations and adapters; it is not a full wallet custody system.42- Do not hardcode environment secrets in source code or docs.43- Avoid bypassing validation for external service calls.44- `signerMode=daemon` is intentionally reserved and returns `SIGNER_DAEMON_NOT_IMPLEMENTED`.45- Do not use this skill for guardian, recovery, DAO governance, or NFT mint routing.