# Send Finnhub Finance Pro to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "finnhub-pro",
    "name": "Finnhub Finance Pro",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/lsj210001/finnhub-pro",
    "canonicalUrl": "https://clawhub.ai/lsj210001/finnhub-pro",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/finnhub-pro",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=finnhub-pro",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/finnhub_cli.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "finnhub-pro",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:20:59.954Z",
      "expiresAt": "2026-05-06T12:20:59.954Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=finnhub-pro",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=finnhub-pro",
        "contentDisposition": "attachment; filename=\"finnhub-pro-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "finnhub-pro"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/finnhub-pro"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/finnhub-pro",
    "downloadUrl": "https://openagent3.xyz/downloads/finnhub-pro",
    "agentUrl": "https://openagent3.xyz/skills/finnhub-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/finnhub-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/finnhub-pro/agent.md"
  }
}
```
## Documentation

### Finnhub Pro — 美股金融数据 CLI

Python CLI 封装 Finnhub API，聚焦免费层实际可用的 10 个功能。

### 安装

pip install finnhub-python

### API Key

去 finnhub.io 注册获取免费 API Key
设置环境变量：export FINNHUB_API_KEY="your-key-here"
或写入 ~/.openclaw/.env

⚠️ 脚本不硬编码 Key，必须通过环境变量 FINNHUB_API_KEY 传入！

### 使用方法

# 基础格式
FINNHUB_API_KEY="your-key" python3 scripts/finnhub_cli.py <command> [args] [--json] [--limit N]

# 推荐：设好环境变量后直接用
python3 scripts/finnhub_cli.py quote AAPL

### 实时报价

python3 scripts/finnhub_cli.py quote AAPL
python3 scripts/finnhub_cli.py quote NVDA --json   # 原始 JSON

### 公司档案

python3 scripts/finnhub_cli.py profile AAPL

### 公司新闻（最近 7 天）

python3 scripts/finnhub_cli.py news NVDA
python3 scripts/finnhub_cli.py news AAPL --from 2026-02-01 --to 2026-02-21 --limit 5

### 分析师推荐趋势

python3 scripts/finnhub_cli.py recommend NVDA

### 内部人交易记录（最近 90 天）

python3 scripts/finnhub_cli.py insiders AAPL
python3 scripts/finnhub_cli.py insiders NVDA --from 2026-01-01 --to 2026-02-21

### 盈利日历（未来 30 天）

python3 scripts/finnhub_cli.py earnings             # 所有股票
python3 scripts/finnhub_cli.py earnings NVDA        # 指定股票
python3 scripts/finnhub_cli.py earnings --from 2026-02-21 --to 2026-03-07

### 基本面财务指标

python3 scripts/finnhub_cli.py financials AAPL
python3 scripts/finnhub_cli.py financials NVDA --json   # 全部指标

### 市场状态

python3 scripts/finnhub_cli.py market          # 默认美国
python3 scripts/finnhub_cli.py market NYSE

### 同行公司

python3 scripts/finnhub_cli.py peers AAPL

### 股票代码搜索

python3 scripts/finnhub_cli.py search "apple"

### 不可用功能（付费层）

K 线数据（stock_candles）
分析师目标价（price_target）
新闻情绪分析（news_sentiment）

### 限制

免费层：60 次/分钟
403 = 需付费升级
429 = 触发限速

### 依赖

Python 3.10+
finnhub-python（pip install finnhub-python）
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lsj210001
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T12:20:59.954Z
- Expires at: 2026-05-06T12:20:59.954Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/finnhub-pro)
- [Send to Agent page](https://openagent3.xyz/skills/finnhub-pro/agent)
- [JSON manifest](https://openagent3.xyz/skills/finnhub-pro/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/finnhub-pro/agent.md)
- [Download page](https://openagent3.xyz/downloads/finnhub-pro)