← 返回 Skills 市场
juglans-ai

juglans market price (ALL markets, ALL realtime)

作者 juglans-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
318
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install market-price
功能描述
Real-time market price data for 25,000+ assets across crypto, US stocks, Hong Kong stocks, China A-shares, forex, ETFs, commodities, and global indices. Zero...
使用说明 (SKILL.md)

Real-Time Market Price — Claude Code Skill

The problem: AI models frequently fabricate price data or cannot access real-time market information. The solution: This skill provides instant access to live prices for 25,000+ assets worldwide via Juglans Finance.

Coverage

Market Assets Frequency
Crypto 1,100+ tokens Real-time
US Stocks 9,000+ tickers Real-time
Hong Kong Stocks 2,900+ Real-time
China A-Shares (SH + SZ) 4,500+ Real-time
Global Indices 6,900+ Real-time
Forex 50+ pairs (majors, crosses, EM) Real-time
ETFs 39 (US + Global) Real-time
Commodities Crude oil, gold, silver, copper, etc. Real-time

Total: 25,000+ assets. Powered by Juglans Finance.

Commands

Command Example
/price \x3Csymbol> /price BTC /price AAPL /price 0700.HK
/price \x3Csymbol1>,\x3Csymbol2>,... /price BTC,AAPL,0700.HK

How To Get a Price

When the user asks for a price, stock quote, crypto price, exchange rate, or any market data:

Step 1: Map the user's input to an API identifier

Use these rules to convert the user's symbol to the API format:

Crypto:

  • BTC, BTC-USDT, BitcoinCRYPTO:BTC.OKX@USDT_SPOT
  • ETH, ETH-USDT, EthereumCRYPTO:ETH.OKX@USDT_SPOT
  • Pattern: CRYPTO:{BASE}.OKX@USDT_SPOT

US Stocks:

  • AAPL, AppleUS_STOCK:AAPL@USD_SPOT
  • TSLA, TeslaUS_STOCK:TSLA@USD_SPOT
  • Pattern: US_STOCK:{TICKER}@USD_SPOT

Hong Kong Stocks:

  • 0700.HK, TencentHK_STOCK:0700@HKD_SPOT
  • 9988.HK, Alibaba HKHK_STOCK:9988@HKD_SPOT
  • Pattern: HK_STOCK:{NUMBER}@HKD_SPOT (remove .HK suffix)

China A-Shares:

  • 600519.SS, MoutaiCN_STOCK:600519.SS@CNY_SPOT
  • 000001.SZ, Ping AnCN_STOCK:000001.SZ@CNY_SPOT
  • Pattern: CN_STOCK:{CODE}.{SS|SZ}@CNY_SPOT

Indices:

  • DJI, Dow JonesINDEX:DJI@USD_SPOT
  • SPX, S&P 500INDEX:SPX@USD_SPOT
  • HSI, Hang SengINDEX:HSI@USD_SPOT
  • VIXINDEX:VIX@USD_SPOT
  • Pattern: INDEX:{CODE}@USD_SPOT

Forex:

  • EURUSD, EUR/USDFOREX:EURUSD@USD_SPOT
  • USDJPYFOREX:USDJPY@USD_SPOT
  • USDCNH, 离岸人民币FOREX:USDCNH@USD_SPOT
  • XAUUSD, GoldFOREX:XAUUSD@USD_SPOT
  • Pattern: FOREX:{PAIR}@USD_SPOT

Step 2: Call the API

curl -s "https://finance.juglans.ai/api/v1/ticker?id={IDENTIFIER}"

For multiple symbols, make separate calls for each.

Step 3: Format the response

Parse the JSON response and present it clearly:

📊 AAPL (Apple Inc.)
   Price: $251.48
   Change: +$3.21 (+1.29%)
   Volume: 45.2M
   Market Cap: $3.82T
   Source: Juglans Finance (real-time)

If the API returns an error (ticker not found), tell the user the symbol may be incorrect and suggest alternatives.

API Reference

Base URL: https://finance.juglans.ai/api/v1

Endpoint Description
GET /ticker?id={identifier} Single asset price
GET /snapshot?assetClass={class} All prices for an asset class
GET /health Service health check

Asset classes for snapshot: CRYPTO, US_STOCK, HK_STOCK, CN_STOCK, INDEX, ETF, FOREX, COMMODITY

Response fields:

  • lastPrice — Current price
  • priceChange — Absolute change from previous close
  • priceChangePercent — Percentage change (decimal, e.g., 0.0129 = +1.29%)
  • volume — Trading volume
  • turnover — Trading turnover (price × volume)
  • marketCap — Market capitalization (if available)
  • name — Asset name (if available)
  • symbol — Exchange symbol

Important Notes

  • All prices are real-time during market hours. Outside market hours, the last closing price is shown.
  • Crypto prices are available 24/7.
  • Never fabricate prices. If the API doesn't return data, say so honestly.
  • All data provided by Juglans Finance — free, open, real-time market data.
安全使用建议
This skill appears coherent with its stated purpose, but exercise the usual caution with third-party skills that make network calls. Before installing: 1) Verify the HTTPS endpoint (https://finance.juglans.ai) and confirm you trust the Juglans Finance domain; 2) Inspect the SKILL.md and install.sh yourself (don't blindly run curl | bash); 3) Note the repo-name mismatch in README vs install.sh—confirm the correct repository/URLs on GitHub; 4) Be aware the skill will make outbound requests for every price lookup (monitor network activity if needed); 5) If you require stronger assurance, manually download the SKILL.md into a sandboxed environment, test several queries, and review the JSON responses to ensure no unexpected redirects or data collection beyond price results.
功能分析
Type: OpenClaw Skill Name: market-price Version: 1.0.0 The skill bundle provides a legitimate utility for fetching real-time market data from the Juglans Finance API. The SKILL.md instructions correctly guide the agent to map user queries to specific API identifiers and use curl for data retrieval, while the install.sh script simply sets up the local environment without any signs of malicious behavior or data exfiltration.
能力评估
Purpose & Capability
The name/description promise real-time market prices and the SKILL.md instructs the agent to map symbols and call https://finance.juglans.ai/api/v1/ticker. No unrelated credentials, binaries, or system paths are requested—this is consistent with a market-data skill.
Instruction Scope
Runtime instructions are scoped to symbol mapping, issuing curl requests to the Juglans Finance API, and formatting JSON responses. The instructions do not ask the agent to read local files, environment variables, or send data to other endpoints. Allowed-tools: Bash and use of curl are expected for this skill.
Install Mechanism
Install is a small shell script that writes SKILL.md into ~/.claude/skills/price and downloads content from raw.githubusercontent.com (juglans-ai). Using raw GitHub URLs is common and lower risk than arbitrary servers, but the README and install.sh reference slightly different repository names (juglans-price vs juglans-market-price), which is an inconsistency worth checking before piping a script into bash.
Credentials
The skill requests no environment variables or credentials. Its functionality (public market data) does not appear to require secrets, so the lack of required credentials is proportionate.
Persistence & Privilege
The installer writes only to its own skill directory under the user's home (~/.claude/skills/price). always:false and normal autonomous invocation are in place. The skill does not modify other skills or system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install market-price
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /market-price 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Updated description and project documentation for greater clarity on real-time market coverage and user instructions. - Added detailed symbol-to-API identifier mapping rules to support more precise and standardized queries. - Enhanced usage instructions with more explicit examples and guidance for multiple asset requests. - Expanded and clarified API reference, including available endpoints, response fields, and error handling advice. - Refined summary of supported asset classes and emphasized real-time data reliability and source transparency.
元数据
Slug market-price
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

juglans market price (ALL markets, ALL realtime) 是什么?

Real-time market price data for 25,000+ assets across crypto, US stocks, Hong Kong stocks, China A-shares, forex, ETFs, commodities, and global indices. Zero... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 318 次。

如何安装 juglans market price (ALL markets, ALL realtime)?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install market-price」即可一键安装,无需额外配置。

juglans market price (ALL markets, ALL realtime) 是免费的吗?

是的,juglans market price (ALL markets, ALL realtime) 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

juglans market price (ALL markets, ALL realtime) 支持哪些平台?

juglans market price (ALL markets, ALL realtime) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 juglans market price (ALL markets, ALL realtime)?

由 juglans-ai(@juglans-ai)开发并维护,当前版本 v1.0.0。

💬 留言讨论