# Send open-market-data 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": "open-market-data",
    "name": "open-market-data",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/anotb/open-market-data",
    "canonicalUrl": "https://clawhub.ai/anotb/open-market-data",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/open-market-data",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=open-market-data",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "open-market-data",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T10:09:39.283Z",
      "expiresAt": "2026-05-19T10:09:39.283Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=open-market-data",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=open-market-data",
        "contentDisposition": "attachment; filename=\"open-market-data-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "open-market-data"
      },
      "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/open-market-data"
    },
    "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/open-market-data",
    "downloadUrl": "https://openagent3.xyz/downloads/open-market-data",
    "agentUrl": "https://openagent3.xyz/skills/open-market-data/agent",
    "manifestUrl": "https://openagent3.xyz/skills/open-market-data/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/open-market-data/agent.md"
  }
}
```
## Documentation

### open-market-data (omd)

Unified CLI for free financial data. Queries 8 sources behind a single interface with automatic routing and fallback.

### Quick Reference

# Stock quotes
omd quote AAPL
omd quote AAPL MSFT GOOGL

# Search
omd search "Apple Inc"

# Financial statements
omd financials AAPL
omd financials AAPL -p quarterly -l 8

# Price history
omd history AAPL --days 90

# Earnings
omd earnings AAPL

# Dividends
omd dividends AAPL

# Options chain
omd options AAPL
omd options AAPL -t call

# SEC filings
omd filing AAPL --type 10-K --latest
omd filing TSLA --type 8-K -l 5

# Insider transactions
omd insiders AAPL

# Crypto
omd crypto BTC
omd crypto top 20
omd crypto history ETH -d 30

# Macroeconomic data
omd macro GDP
omd macro GDP --limit 12
omd macro search "unemployment rate"

# Output formats
omd --json quote AAPL
omd --plain quote AAPL

# Force specific source
omd quote AAPL --source finnhub
omd financials AAPL --source sec-edgar
omd macro NY.GDP.MKTP.CD --source worldbank

# Bypass cache
omd --no-cache quote AAPL

# See all sources and their status
omd sources

# Configure API keys
omd config set fredApiKey <key>
omd config show

### Sources

SourceKey?Best ForSEC EDGARNoFilings, XBRL financials, insider transactionsYahoo FinanceNoReal-time quotes, price history, options, dividendsBinanceNoCrypto prices (non-US only)CoinGeckoFree keyCrypto rankings, broader crypto coverageFREDFree keyGDP, unemployment, interest rates, 800K+ economic seriesFinnhubFree keyReal-time stock quotes, earnings dataAlpha VantageFree keyStock quotes, financials, price history (25/day limit)World BankNoGlobal economic indicators (GDP, unemployment, inflation)

### When to Use --json

Use --json when you need to parse the output programmatically. Always place --json before the command:

omd --json quote AAPL
omd --json financials AAPL -p quarterly
omd --json crypto top 10
omd --json macro GDP --limit 5

### Configuration

API keys via env vars or CLI:

export FRED_API_KEY=your_key
export COINGECKO_API_KEY=your_key
export FINNHUB_API_KEY=your_key
export ALPHA_VANTAGE_API_KEY=your_key
export EDGAR_USER_AGENT="YourCompany you@email.com"

# Or use CLI config
omd config set fredApiKey your_key
omd config set coingeckoApiKey your_key
omd config set finnhubApiKey your_key
omd config set alphaVantageApiKey your_key
omd config show

### Routing

Commands automatically route to the best available source. If the top source fails or hits its rate limit, it falls back to the next one. Use --source <name> to force a specific provider.

Data TypePriority OrderStock quotesYahoo → Finnhub → Alpha VantageFinancialsSEC EDGAR → Yahoo → Alpha VantagePrice historyYahoo → Alpha VantageEarningsYahoo → FinnhubDividendsYahooOptionsYahooSEC filingsSEC EDGARInsidersSEC EDGARCryptoBinance → CoinGeckoMacro/economicFRED → World BankSearchSEC EDGAR → Yahoo → Finnhub → Alpha Vantage
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: anotb
- Version: 0.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-05-12T10:09:39.283Z
- Expires at: 2026-05-19T10:09:39.283Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/open-market-data)
- [Send to Agent page](https://openagent3.xyz/skills/open-market-data/agent)
- [JSON manifest](https://openagent3.xyz/skills/open-market-data/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/open-market-data/agent.md)
- [Download page](https://openagent3.xyz/downloads/open-market-data)