Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
Version History
Major rewrite: Migration from Python to Node.js, and expansion to support stock market data. - All Python scripts and dependencies removed; replaced by Node.js scripts using only standard libraries. - Added stock market features: real-time stock quotes, company profiles, and stock ticker search tools. - Improved and streamlined authentication: session token management now handled via JavaScript and local file storage. - Updated documentation for new usage patterns, script names, syntax, and supported features. - No external dependencies required—just Node.js out-of-the-box.
What This Skill Does
Provides real-time and historical pricing, market metrics, and company data for both cryptocurrencies and stocks. Authentication is handled automatically via a session token, so no API key setup is needed. Built on Node.js standard libraries with no external dependencies.
Covers both crypto and stock data in a single skill without requiring any manual API key registration or environment configuration.
When to use it
- Check current Bitcoin and Ethereum prices in JPY
- Pull AAPL company profile and CEO info
- Get candlestick data for a coin before making a trade
- Find top 20 coins by market cap
- Look up public company Bitcoin treasury holdings
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: What are the current prices and 7-day OHLC charts for Bitcoin and Solana?
- 1Run get_crypto_price.js bitcoin solana to fetch current prices and 24h metrics
- 2Run get_coin_ohlc_chart.js bitcoin --days=7 to retrieve candlestick data for Bitcoin
- 3Run get_coin_ohlc_chart.js solana --days=7 to retrieve candlestick data for Solana
- 4Format and return prices alongside OHLC tables for both assets
Current prices with market cap and 24h change, plus 7-day OHLC candlestick data for Bitcoin and Solana