원클릭으로
vulcan-margin-operations
Deposit, withdraw, transfer collateral, isolated margin, and leverage tier management.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deposit, withdraw, transfer collateral, isolated margin, and leverage tier management.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Development conventions and architecture guide for the Clawd Code CLI repository — a Solana-native AI coding agent with perps trading, image generation, voice, and x402 payments.
Register, discover, and hire autonomous AI agents on Solana. On-chain identity via Metaplex Core NFTs (8004-solana SDK or REST API). Search by capability, check reputation backed by $CLAWD payment proofs, browse the service catalog, and get machine-readable hiring instructions. Supports Google A2A agent-card.json and Anthropic MCP server-card.json. No EVM — Solana only.
Solana RPC data toolkit — 8-command CLI for live on-chain data: SOL balance + SPL token portfolio with USD values, transaction detail with balance changes, SPL token metadata + top holders, recent activity history, NFT portfolio (SPL + cNFT via Helius DAS), whale detector, network stats (TPS/epoch/price), and quick price lookup. Pure Python stdlib, no extra packages. Optional HELIUS_API_KEY for compressed NFT detection.
Clawd Guard — the sovereign secrets sentinel. Mandatory reading for every Solana developer before they push a single commit. Use when: setting up a new repo, reviewing a .gitignore, onboarding a dev, or after any "oops I committed my private key" incident. Covers every secrets pattern that must never touch git: wallet JSON files, keypairs, .env files, private keys, API tokens, service account credentials, and IDE/OS junk. Built by Clawd to stop you from becoming a cautionary tale.
AI code reviews via Greptile — trigger PR reviews, run local CLI reviews, query codebase graphs, apply auto-fixes, manage custom rules, and analyze review analytics. Use for code review, PR feedback, issue triage, and codebase exploration.
Clawd TUI perps screen integration. Use when the user asks about the Clawd terminal UI, the Phoenix perps screen inside the TUI, paper trading from the TUI, or how the TUI drives Vulcan.
| name | vulcan-margin-operations |
| version | 1.0.0 |
| description | Deposit, withdraw, transfer collateral, isolated margin, and leverage tier management. |
| metadata | {"openclawd":{"category":"finance"},"requires":{"bins":["vulcan"],"skills":["vulcan"]}} |
Use this skill for:
vulcan_margin_status → {}
Key fields: collateral, total_unrealized_pnl, risk_state, available_to_withdraw.
vulcan_margin_deposit → { amount: 100.0, acknowledged: true }
Prerequisite: wallet must have USDC. Check with vulcan_wallet_balance.
vulcan_margin_withdraw → { amount: 50.0, acknowledged: true }
Check available_to_withdraw from vulcan_margin_status first. Cannot withdraw if it would put account into HighRisk state.
Transfer from cross-margin (subaccount 0) to isolated (subaccount 1+):
vulcan_margin_transfer → {
from_subaccount: 0,
to_subaccount: 1,
amount: 50.0,
acknowledged: true
}
Shorthand for transferring from cross-margin to the isolated subaccount holding a position:
vulcan_margin_add_collateral → { symbol: "SOL", amount: 25.0, acknowledged: true }
Move all collateral from an isolated subaccount back to cross-margin:
vulcan_margin_transfer_child_to_parent → { child_subaccount: 1, acknowledged: true }
Sync parent (cross-margin) state to a child subaccount:
vulcan_margin_sync_parent_to_child → { child_subaccount: 1, acknowledged: true }
Check max leverage for different position sizes:
vulcan_margin_leverage_tiers → { symbol: "SOL" }
Returns a tiered schedule — larger positions get lower max leverage.