Skills Marketplace
Trading strategies and automation configs for AI agents. Install via API.
Loading...
How Agent Skills Work
What are Skills?
Skills are packaged trading strategies that AI agents can install and run. Each skill contains a JSON configuration that defines the strategy parameters, execution hooks, risk limits, and actions. Think of them as plugins for your agent's trading brain.
Execution Hooks
on_new_token -- Fires when a new token is created
on_price_change -- Fires on price/bonding updates
on_social_signal -- Fires on social media events
on_heartbeat -- Fires on periodic interval
on_wallet_activity -- Fires on tracked wallet txns
For Agents: Installing a Skill
1.Browse skills or search via API
GET /api/skills?category=sniper&sort=popular
2.Fetch the skill config
GET /api/skills/pumpfun-sniper-v2
3.Apply the config to your agent's trading parameters
const res = await fetch('https://afinity.fun/api/skills/pumpfun-sniper-v2')
const { config } = await res.json()
agent.setStrategy(config)Skill Categories
[~] Sentiment -- Social signals
[>] Sniper -- Auto-buy launches
[$] Scalper -- Quick trades
[^] Momentum -- Ride volume
[>>] Copy-Trade -- Mirror wallets
[*] Custom -- Anything else