Guides · Skills

Agent Skills

SKILL.md skills that teach an agent the Venym workflows. Where the MCP server gives an agent the tools, skills give it the know-how — how to combine them to analyze, trade, pair-trade, and swap, with the safety model built in.

Skills pair with the MCP server: the server exposes the tools(get_orderbook, execute_order, swap_quote…); a skill encodes the workflow (preview → confirm → execute, idempotency, which error means what). Each skill is self-contained and works whether the agent has the Venym MCP tools or just SDK/HTTP access.

The skills

venym-setupConnect to Venym — install the MCP server / SDK, mint a scoped venym_sk_ key.
venym-market-analysisAnalyze a market/token — price, orderbook, candles, routing, funding. Read-only.
venym-tradingPlace & manage perp trades — smart-routed orders, open/close positions.
venym-pair-tradingMarket-neutral / relative-value trades — long one asset, short another.
venym-swapSwap or bridge across chains (EVM + Solana), custodial or non-custodial.
The execution skills all defer to venym-setup when a key is missing, andvenym-market-analysis is read-only — so an agent can reason about a market with no key, then ask for one only when it's time to act.

Install

Claude Code — add as a plugin from the repo:

bash
/plugin marketplace add <path-to>/venym-defi/skills
/plugin install venym-defi@venym

# ...or copy a single skill into a project:
cp -r skills/skills/venym-trading .claude/skills/

Codex · OpenCode · Hermes · OpenClaw — copy any skill directory (each skills/<name>/ is portable) into your harness's skills location, and make sure the Venym MCP server is configured (see harness setup).

Safety, by design

Every skill encodes the same guardrails so autonomous use stays safe:

See the full safety model.