← 返回 Skills 市场
xuan622

Fin Intel Hub

作者 xuan622 · GitHub ↗ · v1.0.2
cross-platform ✓ 安全检测通过
399
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install fin-intel-hub
功能描述
Access global financial data including SEC filings, Asian and US stock markets, crypto on-chain metrics, financial news sentiment, and macroeconomic indicators.
使用说明 (SKILL.md)

Fin Intel Hub

Financial intelligence hub for OpenClaw. Supports global markets including US, China, Hong Kong, Taiwan, Japan, and Korea.

Features

  • SEC Filings: Retrieve 10-K, 10-Q, 8-K filings from EDGAR
  • Global Market Data: US stocks (Alpha Vantage) + Asian markets (Yahoo Finance)
  • Asian Markets: Hong Kong, Tokyo, Taiwan, Korea, Shanghai, Shenzhen
  • Crypto On-Chain: Monitor wallet flows, exchange inflows/outflows
  • News Sentiment: Aggregate sentiment from financial news sources
  • Macro Dashboard: Fed rates, CPI, unemployment data

API Keys (Optional)

All API keys are optional. The skill works without any keys using Yahoo Finance for stock data. Add keys to unlock additional features:

Service Purpose Free Tier Required?
Yahoo Finance Global/Asian stocks, indices, futures, commodities Unlimited No
Alpha Vantage US stocks, earnings 25 calls/day Optional
NewsAPI Financial news sentiment 100 requests/day Optional
FRED API Macroeconomic data Unlimited Optional
DeFiLlama Crypto on-chain data Unlimited No

Quick Start

SEC Filings

from scripts.sec_filings import get_recent_filings

# Get last 5 10-K filings for Apple
filings = get_recent_filings(ticker="AAPL", form="10-K", limit=5)

Stock Prices

from scripts.market_data import get_price_history

# Get 30-day price history
prices = get_price_history(ticker="TSLA", days=30)

Crypto Data

from scripts.crypto_onchain import get_exchange_flows

# Monitor exchange inflows/outflows
flows = get_exchange_flows(exchange="binance", days=7)

Scripts Reference

  • scripts/sec_filings.py - SEC EDGAR integration
  • scripts/market_data.py - US stock prices and earnings (Alpha Vantage)
  • scripts/yahoo_finance.py - Global/Asian stock prices (Yahoo Finance)
  • scripts/crypto_onchain.py - Blockchain data via DeFiLlama/CoinGecko
  • scripts/sentiment_news.py - News sentiment analysis
  • scripts/macro_data.py - FRED macroeconomic indicators

Asian Market Examples

from scripts.yahoo_finance import get_hong_kong_stock, get_tokyo_stock, get_taiwan_stock

# Hong Kong - Tencent
prices = get_hong_kong_stock("0700", period="1y")

# Tokyo - Toyota
prices = get_tokyo_stock("7203", period="1y")

# Taiwan - TSMC
prices = get_taiwan_stock("2330", period="1y")

Indices & Futures Examples

from scripts.yahoo_finance import get_sp500, get_nikkei225, get_vix
from scripts.yahoo_finance import get_crude_oil, get_gold, list_available_indices

# Global indices (15+ available)
sp500 = get_sp500(period="1y")
nasdaq = get_nasdaq(period="1y")
nikkei = get_nikkei225(period="1y")
hang_seng = get_hang_seng(period="1y")
vix = get_vix(period="1mo")  # Fear index

# Futures (15+ available)
oil_futures = get_crude_oil(period="6mo")
gold_futures = get_gold(period="6mo")
sp_futures = get_sp500_futures(period="1mo")
natural_gas = get_natural_gas(period="6mo")

# List all available
indices = list_available_indices()
futures = list_available_futures()

For detailed API documentation and data schemas, see references/.

安全使用建议
This skill appears internally consistent for aggregating public financial data. Before installing: (1) Prefer cloning from the public GitHub repo URL in the README and inspect code yourself; (2) Only provide API keys you control and are comfortable being used by the local skill (keys are optional); (3) Be aware some modules fall back to public endpoints and some functions return empty results without optional keys; (4) Test the skill in a sandbox or non-production environment first — there are minor code quality issues (truncated/buggy returns in some files) but no signs of data exfiltration or unrelated credential access. If you need higher assurance, review the full code (the truncated files) or run a static scan locally.
功能分析
Type: OpenClaw Skill Name: fin-intel-hub Version: 1.0.2 The OpenClaw skill 'fin-intel-hub' is classified as benign. It provides comprehensive financial intelligence by aggregating data from legitimate public APIs (Yahoo Finance, SEC EDGAR, DeFiLlama, CoinGecko) and optional APIs (Alpha Vantage, NewsAPI, FRED, Glassnode, Etherscan, Whale Alert). The skill demonstrates robust security practices, including extensive input validation, API rate limiting, secure logging with sensitive data redaction, and safe error handling, primarily implemented in `scripts/security_utils.py`. All API keys are handled via environment variables and are optional. There is no evidence of data exfiltration, malicious execution, persistence, obfuscation, or prompt injection attempts in any of the analyzed files, including the `SKILL.md` and `README.md` instructions.
能力评估
Purpose & Capability
The name/description promise SEC filings, market data, crypto on-chain metrics, news sentiment, and macro indicators; the repository contains modules for each (sec_filings.py, market_data.py, yahoo_finance.py, crypto_onchain.py, sentiment_news.py, macro_data.py). The optional environment variables (AlphaVantage, NewsAPI, FRED, Glassnode, Etherscan, WhaleAlert) directly map to the described external APIs and are marked optional, which is proportionate.
Instruction Scope
SKILL.md instructs the agent to import the included Python modules and call their functions; it does not ask the agent to read unrelated local files, system configuration, or cloud credentials. The runtime instructions and examples stay within the stated domain (fetching public financial data).
Install Mechanism
There is no install spec (instruction-only skill) and the code uses only Python and requests; nothing is downloaded from arbitrary URLs or extracted to disk during install. This minimal installation footprint is low risk.
Credentials
No required environment variables are declared; the listed env vars are optional API keys that match the services used in code. There are no unrelated secret names or unexpected credential requests. Logging utilities include redaction patterns (e.g., for API keys) — expected and reasonable for this skill.
Persistence & Privilege
The skill is not marked always:true and requests no elevated privileges or system-wide configuration changes. It does not modify other skills' configurations or require persistent installation steps beyond placing files in the skills directory (documented).
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install fin-intel-hub
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /fin-intel-hub 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
- Added new optional environment variables for crypto-related API keys: GLASSNODE_API_KEY, ETHERSCAN_API_KEY, and WHALE_ALERT_API_KEY. - Updated documentation in SKILL.md to reflect new API key options and their purposes. - No changes to core functionality; no new pip dependencies added. - Documentation improvements only (README, SAFETY, SKILL).
v1.0.1
fin-intel-hub v1.0.1 - Added SAFETY.md for improved documentation on safety practices. - Updated author, source, license, and environment variable info in SKILL.md. - Declared optional environment variables for API keys. - Clarified that no additional pip packages are required (standard library + requests only). - Minor documentation enhancements in README and related files.
v1.0.0
fin-intel-hub 1.0.0 - Initial release of a comprehensive financial intelligence hub. - Retrieve SEC EDGAR filings (10-K, 10-Q, 8-K). - Access US and major Asian stock market data, including Hong Kong, China, Taiwan, Japan, and Korea. - Monitor crypto on-chain metrics and whale alerts. - Analyze real-time news sentiment. - Fetch macroeconomic indicators such as Fed rates, CPI, and unemployment. - API keys are optional, with most features available out of the box.
元数据
Slug fin-intel-hub
版本 1.0.2
许可证
累计安装 0
当前安装数 0
历史版本数 3
常见问题

Fin Intel Hub 是什么?

Access global financial data including SEC filings, Asian and US stock markets, crypto on-chain metrics, financial news sentiment, and macroeconomic indicators. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 399 次。

如何安装 Fin Intel Hub?

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

Fin Intel Hub 是免费的吗?

是的,Fin Intel Hub 完全免费(开源免费),可自由下载、安装和使用。

Fin Intel Hub 支持哪些平台?

Fin Intel Hub 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Fin Intel Hub?

由 xuan622(@xuan622)开发并维护,当前版本 v1.0.2。

💬 留言讨论