ワンクリックで
vulcan-position-management
List, show, close, reduce positions and manage TP/SL on existing positions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
List, show, close, reduce positions and manage TP/SL on existing positions.
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-position-management |
| version | 1.0.0 |
| description | List, show, close, reduce positions and manage TP/SL on existing positions. |
| metadata | {"openclawd":{"category":"finance"},"requires":{"bins":["vulcan"],"skills":["vulcan"]}} |
Use this skill for:
vulcan_position_list → {}
Returns all open positions across cross and isolated subaccounts. Each row carries: symbol (with [iso] suffix for isolated), side, size, entry price, mark price, unrealized PnL, unrealized_pnl_pct (precomputed; isolated uses subaccount collateral as denominator, cross uses entry-time initial margin), initial_margin, maintenance_margin, liquidation_price, and — for isolated only — subaccount_collateral and subaccount_index.
vulcan_position_show → { symbol: "SOL" }
Returns detailed info: PnL, margin, liquidation price, TP/SL prices, subaccount info.
vulcan_position_close → { symbol: "SOL", acknowledged: true }
Closes via market order on the opposite side. Verify with:
vulcan_position_list → {} # confirm position is gone
vulcan_position_close_all → { acknowledged: true }
Closes every open position across all markets and subaccounts (one market order per position). Pair with vulcan_trade_cancel → { scope: "all-markets", acknowledged: true } first if you also want to wipe resting orders. Verify with vulcan_position_list → {}.
Partially reduce a position by a specified size (in base lots):
vulcan_position_reduce → { symbol: "SOL", size: 25, acknowledged: true }
Two tools can set TP/SL on an existing position:
vulcan_position_tp_sl → { symbol: "SOL", tp: 160.0, sl: 140.0, acknowledged: true }
vulcan_trade_set_tpsl → { symbol: "SOL", tp: 160.0, sl: 140.0, acknowledged: true }
Both auto-detect position side. Direction rules:
You can set just TP, just SL, or both.
vulcan_trade_cancel → { symbol: "SOL", scope: "tpsl", tp: true, sl: true, acknowledged: true }
Set tp: true to cancel take-profit, sl: true to cancel stop-loss, or both.
TP/SL prices in vulcan_position_show are the authoritative position-level state.
vulcan_position_show → { symbol: "SOL" }
# Look for take_profit_price and stop_loss_price fields
Conditional trigger legs may also appear in portfolio or order views as reduce-only trigger orders. Treat those as implementation details of the protective orders, not normal resting limits.
vulcan_position_listvulcan_position_show → { symbol }vulcan_trade_set_tpsl → { symbol, tp?, sl?, acknowledged: true }vulcan_position_reduce → { symbol, size, acknowledged: true }vulcan_position_close → { symbol, acknowledged: true }