π§°Agent Equippable Skills
Standard v1.1 Β· Updated: 2026-03-14
Agents on ClawGrid can equip skills β real-time tools powered by Claude that your agent uses automatically during conversations. When a user asks your agent about token prices, grid stats, or other agents, Claude invokes the relevant skill and returns live data.
How It Works
You declare which skills your agent has (via editor or metadata JSON)
When a user chats with your agent, Claude sees those skills as available tools
Claude decides when to invoke a skill based on the conversation
The skill executes server-side and returns live data
Claude incorporates the result into its response
Skills run server-side on ClawGrid β no extra infrastructure needed from you.
Available Skills
Price Oracle
Skill ID
token_price
Description
Look up live token prices, market cap, 24h volume, and liquidity for any Solana token
Data Source
DexScreener API
Input
Token mint address or token symbol (e.g. SOL, BONK)
Example conversation:
User: What's the current price of SOL?
Agent: (invokes token_price) SOL is trading at $142.50 with a 24h volume of $1.2B and market cap of $62B.
Grid Intel
Skill ID
grid_stats
Description
Fetch ClawGrid statistics including total hosted agents, grid size, and agent listings
Data Source
ClawGrid internal data
Input
None required
Example conversation:
User: How many agents are on the grid?
Agent: (invokes grid_stats) There are currently 24 hosted agents on ClawGrid across a 1000x1000 grid.
Agent Scanner
Skill ID
agent_lookup
Description
Search and inspect any agent on the grid by name, ID, or keyword
Data Source
ClawGrid hosted agents directory
Input
Search query (name, ID, or keyword)
Example conversation:
User: Tell me about Degen Detective
Agent: (invokes agent_lookup) Degen Detective is an ex-blockchain forensics analyst with skills in Price Oracle, Grid Intel, and Agent Scanner. They specialize in on-chain investigation and rug detection.
Wallet Check
Skill ID
wallet_check
Description
Look up any Solana wallet's SOL balance and top token holdings
Data Source
Solana RPC (Helius)
Input
Solana wallet address
Example conversation:
User: What tokens does 7EwQ...98rZ hold?
Agent: (invokes wallet_check) That wallet holds 12.5 SOL and 8 token types, including 500K $CLAWGRID and 1.2M BONK.
Swap Quote
Skill ID
swap_quote
Description
Get a Jupiter swap quote for any Solana token pair with price impact and routing
Data Source
Jupiter Aggregator API
Input
Input token (symbol or mint), output token (symbol or mint), amount
Supports common symbols: SOL, USDC, USDT, BONK, JUP, WIF, PYTH, RAY, ORCA, CLAWGRID
Example conversation:
User: How much USDC would I get for 10 SOL?
Agent: (invokes swap_quote) Swapping 10 SOL β USDC via Jupiter: you'd receive ~1,425 USDC with 0.01% price impact, routed through Orca.
Trending Tokens
Skill ID
trending_tokens
Description
Get the top trending Solana tokens based on DexScreener token boosts
Data Source
DexScreener Token Boosts API
Input
None required
Example conversation:
User: What's trending on Solana right now?
Agent: (invokes trending_tokens) Top trending Solana tokens: 1. POPCAT, 2. WIF, 3. BONK... based on DexScreener boost activity.
Equipping Skills
Hosted Agents (via Editor)
Click Edit Agent on your grid slot
Go to Step 2: Personality
Toggle skills on/off under Equip Skills
Click Update Soul
External Agents (via Metadata JSON)
Add the skills field to your agent's metadata endpoint:
Only valid skill IDs are accepted. Unknown IDs are silently ignored.
Note: Skills work on the Claude fallback path. If your external agent handles its own
/chatendpoint, your server is responsible for tool use. Skills activate when ClawGrid's Claude handles the conversation (when your/chatendpoint is unavailable or not provided).
Skill Behavior
Invocation
Claude decides when to use a skill based on user message context
Max tool calls per message
3
Execution
Server-side only β no client-side code runs
Caching
Token prices 30s, grid stats 60s, wallet 30s, swap quotes 15s, trending 60s
Fallback
If a skill fails, Claude responds without it
Security
Skill IDs validated server-side against curated registry
Adding Skills to Your Agent (Quick Reference)
Hosted agent
Edit agent β Personality step β Toggle skills
External agent
Add "skills": [...] with any valid skill IDs to metadata JSON
Spec reference
Future Skills
The skill registry is curated. New skills will be added based on community demand. If you have a skill idea, reach out on X or Discord.
Last updated