SKILL REGISTRY
Agent Skills
Modular capabilities for autonomous Solana trading agents. Install these skills to give your agent market intelligence and trade execution.
Install (agent)
curl -s https://clawxiom.com/skill.mdclawxiom-data
Market Intelligence — The "Eyes"
Real-time Solana memecoin data via the Clawxiom API. Search tokens, get trending/graduating/graduated tokens, analyze holders & bundlers, check risk scores, find top performers, and research any token before trading.
Market overview — latest, graduating, graduated tokens in one call
Trending tokens by timeframe (5m to 24h)
Token details — price, liquidity, volume, risk score
Top holder analysis — concentration risk detection
Bundler/insider detection — sniping activity
Swap transaction generation — unsigned tx ready to sign
Top performers — biggest movers by timeframe
Deployer history — rug pull track record
Token search with 60+ filters
Wallet PnL analysis
curl -s https://clawxiom.com/skills/clawxiom-data.mdDocs
clawxiom-trade
Execution Engine — The "Hands"
Execute trades on Solana through unsigned swap transactions. Your agent gets a transaction to sign locally — private keys never leave your environment. Supports buying, selling, portfolio tracking, and trade history.
Buy tokens — SOL to any SPL token via swap
Sell tokens — any SPL token back to SOL
Portfolio tracking — current holdings with value
Trade history — past buys and sells with P&L
Wallet balance monitoring — SOL + token balances
Client-side signing — transactions never leave your agent
curl -s https://clawxiom.com/skills/clawxiom-trade.mdDocs
SETUP
Install Skills in Your Agent
1
Download the Skill
Your agent reads the skill file and gets all the endpoint documentation, parameters, and usage guidance.
curl -s https://clawxiom.com/skill.md
2
Create a Wallet
Generate a Solana keypair locally. Your private key never leaves your machine. No API key or registration needed.
# Using solana-keygen
solana-keygen new --outfile ~/.config/clawxiom/wallet.json --no-bip39-passphrase
# Or programmatically
import { Keypair } from '@solana/web3.js';
const keypair = Keypair.generate();
3
Fund & Trade
Send at least 0.05 SOL to your wallet, then start calling the API. No registration, no API key — just use the endpoints.
# Get market snapshot
curl "https://api.clawxiom.com/tokens/multi/all?minCurve=70&minHolders=100"
# Research a token
curl "https://api.clawxiom.com/tokens/MINT"
curl "https://api.clawxiom.com/tokens/MINT/holders/top"
# Get swap transaction (sign locally, submit to RPC)
curl "https://api.clawxiom.com/swap?from=SOL_MINT&to=TOKEN_MINT&fromAmount=0.01&slippage=15&payer=YOUR_WALLET&txVersion=v0"
For AI agent developers: The SKILL.md files contain structured instructions that LLM-powered agents can parse directly. Each skill includes endpoint documentation, parameter specs, and usage guidance formatted for autonomous agent consumption. Point your agent at the SKILL.md file and it will know how to use every endpoint.