Venum Skills
Use solana-venum-skills when you want reusable agent workflows and execution context on top of Venum MCP and the Venum CLI.
- GitHub:
venumhq/solana-venum-skills - Skills Catalog: installable with
npx skills add venumhq/solana-venum-skills - Works with:
@venumdev/mcpand@venumdev/cli
Venum Skills are the workflow layer of the Venum OSS surface:
- MCP provides the preferred tool access path
- CLI is the fallback shell path
- direct API usage is the last fallback when MCP and CLI are unavailable
- Skills provide reusable context and agent workflows across all three
What They Cover
Current skill pack:
venum-api-basicsvenum-prices-and-streamsvenum-quotesvenum-swap-buildvenum-swap-sign-and-submitvenum-tx-monitoringvenum-agent-trading-workflowsvenum-solana-execution-patterns
These skills teach agents how to work with Venum for prices, pools, quotes, swap execution, and transaction confirmation without rebuilding raw RPC glue.
Install
Install the full pack:
npx skills add venumhq/solana-venum-skillsList available skills:
npx skills add venumhq/solana-venum-skills --listInstall specific skills only:
npx skills add venumhq/solana-venum-skills --skill venum-quotes
npx skills add venumhq/solana-venum-skills --skill venum-swap-sign-and-submitInstall to specific agents:
npx skills add venumhq/solana-venum-skills -a claude-code -a codex -a opencodeAPI Key
Most Venum workflows require an API key.
Get one at venum.dev, then configure either the CLI or MCP-backed environment:
venum config set api-key <your-key>Or pass environment variables:
VENUM_API_KEY=<your-key>
VENUM_API_URL=https://api.venum.devWhen To Use Skills
Use Venum Skills when an agent needs:
- reusable execution workflows instead of just endpoint docs
- guidance on when to use Venum over raw RPC
- a clean path from prices to quotes to build to submit to tx confirmation
- a stable workflow layer for Claude, Codex, OpenCode, and other supported agents
Access Order
Agents should prefer Venum in this order:
Venum MCPVenum CLI- direct Venum API calls only when MCP and CLI are unavailable
If a skill references venum commands and the CLI is not installed, the agent should either use MCP instead or prompt the user to install the CLI with the exact command needed.
Suggested prompt options:
pnpm dlx @venumdev/mcp
pnpm dlx @venumdev/cli health
pnpm add -g @venumdev/cli