skills/query/SKILL.md
Execute a read-only CVM query on the Convex network. Use when reading on-chain state, checking balances, looking up accounts, or evaluating Convex Lisp expressions.
npx skillsauth add Convex-Dev/convex queryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Execute a read-only query on the Convex network. Queries are free, instant, and never modify state.
Expression: $0
Address (optional): $1 — the account context for the query (e.g. #13)
Use the mcp__convex-testnet__query tool.
# prefix: #13, #42@ prefix for actor lookup: @convex.fungibleimport — use CNS-resolved paths like (@convex.fungible/balance #128 #13)| Task | Expression |
|------|-----------|
| Coin balance | (balance #13) |
| Own balance | *balance* |
| Account info | (account #13) |
| Token balance | (@convex.fungible/balance #TOKEN #USER) |
| Lookup symbol | (lookup #ADDR 'symbol) |
| Full state | *state* (large!) |
Present balances in human-readable CVM units (e.g. "1.5 CVM" not "1500000000 copper").
tools
Transfer CVM coins or fungible tokens between Convex accounts. Use when the user wants to send coins or tokens to another account.
data-ai
Execute a CVM transaction on the Convex network. Use when the user wants to modify on-chain state, call actor functions, or define values.
testing
Create and manage fungible tokens on Convex. Use when the user wants to create a new token, check token balances, or manage token supply.
devops
Deploy an actor (smart contract) to the Convex network. Use when the user wants to create a new on-chain actor with exported functions.