atxswap
Manage ATX on BSC with wallet creation, price and balance queries, PancakeSwap V3 swaps, liquidity operations, LP positions and holdings, and BNB/ERC20 transfers. Use when the user mentions ATX, BSC, PancakeSwap V3, wallet creation, price checks, buying, selling, liquidity, fees, holdings, LP positions, or token transfers.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/agentswapx/atxswapATXSwap Skill
Execute ATX trading and wallet workflows on BSC. This skill is designed for agents that need safe, repeatable commands for wallet management, ATX/USDT quotes, swaps, V3 liquidity actions, and transfers.
- SDK:
atxswap-sdkon npm (source) - Docs (team / project): Team introduction (EN) · Team introduction (ZH)
- Keystore dir:
~/.config/atxswap/keystore(fixed, not configurable) - Secrets dir:
~/.config/atxswap/(master.key + secrets.json)
Use This Skill For
- Create the single wallet used by this skill instance (importing an existing private key is not supported)
- Query ATX price, balances, LP positions (see Required agent reply for holdings under
query.js), quotes, and arbitrary ERC20 token info - Buy or sell ATX against USDT on PancakeSwap V3
- Add liquidity (full range or a custom price range in USDT per ATX or tick bounds), remove liquidity, collect fees, or burn empty LP NFTs
- Transfer BNB, ATX, USDT, or arbitrary ERC20 tokens
Before First Use
This skill ships its own Node scripts and depends on atxswap-sdk.
- Open the skill directory where this
SKILL.mdis installed. - Run
npm installthere before using any script. - If
npm installfails, stop and report the dependency error instead of guessing.
If the skill is installed via ClawHub or OpenClaw CLI, the install location is
typically ~/.clawhub/skills/atxswap/ (or the equivalent client-managed path).
If you cloned this repository directly, the location is skills/atxswap/.
Script Location
Use the skill directory path to locate scripts. If ${SKILL_DIR} is available
(injected by skills.sh-compatible runtimes), use it; otherwise use the absolute
path to this skill's installed directory.
Example:
cd skills/atxswap && npm install
cd "${SKILL_DIR}" && node scripts/wallet.js list
All examples below use cd "${SKILL_DIR}" && for clarity. If your runtime does
not inject ${SKILL_DIR}, replace it with the absolute path of the installed
skill directory.
Runtime Notes
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-agentswapx-atxswap": {
"enabled": true,
"auto_update": true
}
}
}