vara-trading-skill
Installation
SKILL.md
Local Spot Trading Skill
This skill package allows an AI agent to execute local CLI commands for CEX spot trading and routing actions. VARA remains a default route/example, but buy/sell commands support any active spot pair allowed by onboarding risk limits.
The project does not run a backend. All commands execute locally on the user's machine.
Preamble
Run this check before using the skill:
if command -v vara-agent >/dev/null 2>&1; then
echo "[PREFLIGHT] OK: vara-agent present ($(vara-agent --version 2>/dev/null || true))"
else
echo "[PREFLIGHT] MISSING: vara-agent CLI is not on PATH."
echo "[PREFLIGHT] Install: npm install -g vara-trading-skill"
echo "[PREFLIGHT] Then restart the shell or agent session if PATH did not refresh."
fi