원클릭으로
vulcan-market-intel
Ticker, orderbook, candles, market info, and pre-trade analysis patterns.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Ticker, orderbook, candles, market info, and pre-trade analysis patterns.
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-market-intel |
| version | 1.0.0 |
| description | Ticker, orderbook, candles, market info, and pre-trade analysis patterns. |
| metadata | {"openclawd":{"category":"finance"},"requires":{"bins":["vulcan"],"skills":["vulcan"]}} |
Use this skill for:
vulcan_market_list → {}
Returns all active perpetual markets with fees, leverage info, and trading status.
vulcan_market_ticker → { symbol: "SOL" }
Key fields: mark_price, index_price, funding_rate, volume_24h, change_24h.
vulcan_market_info → { symbol: "SOL" }
Key fields: base_lots_decimals, tick_size, taker_fee, maker_fee, leverage_tiers, funding_params.
vulcan_market_orderbook → { symbol: "SOL", depth: 10 }
Key fields: bids, asks, mid_price, spread.
Use this for:
vulcan_market_candles → { symbol: "SOL", interval: "1h", limit: 24 }
Intervals: 1m, 5m, 15m, 1h, 4h, 1d. Default: 1h, limit: 50.
Raw candles tell you what happened; indicators tell you the shape of what happened. For trend/momentum/volatility context, prefer one of:
vulcan_ta_report → { symbol: "SOL", timeframe: "1h" } # RSI + MACD + BBands + ATR + ADX, one call
vulcan_ta_compute → { symbol: "SOL", indicator: "rsi", timeframe: "1h", period: 14 }
Or fold a couple of overlays directly into the candle table with --with-indicators:
vulcan market candles SOL --interval 1h --limit 50 --with-indicators rsi,macd
See vulcan-technical-analysis for indicator semantics and trigger patterns.
Before placing a trade, gather comprehensive market context:
1. vulcan_market_info → { symbol } # lot sizes, fees, leverage
2. vulcan_market_ticker → { symbol } # current price, funding rate
3. vulcan_market_orderbook → { symbol } # spread, depth, slippage
4. vulcan_market_candles → { symbol, interval: "1h", limit: 24 } # recent price action
5. vulcan_ta_report → { symbol, timeframe: "1h" } # momentum + volatility verdict
Summarize for the user: current price, 24h change, funding rate, spread, liquidity depth, and the indicator verdict (e.g. "RSI oversold, MACD bearish, ADX 31 → strong trend continuation risk before mean reversion").