← 返回 Skills 市场
finskills

finskills-one

作者 finskills · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
27
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install finskills-one
功能描述
One-stop access to real-time financial data via the Finskills REST API at https://finskills.net. Covers stocks (quotes, history, fundamentals, options, holde...
使用说明 (SKILL.md)

FinSkills One — Unified Financial Data

Use the Finskills REST API (https://finskills.net) as the single entry point for all financial data: stocks, crypto, forex, macro, commodities, news, SEC filings, ETFs, analyst ratings, alternative data (Congress / insider / WSB).

This skill consolidates 80+ endpoints behind one API key, with automatic multi-source fallback (Yahoo Finance, CoinGecko, FRED, World Bank, SEC EDGAR, Frankfurter, FDIC, FEMA, etc.) and a unified response envelope.


Authentication

All requests require the X-API-Key header. If the user has not provided one, ask for it, then point them to https://finskills.net/register.

GET /v1/free/crypto/price/bitcoin HTTP/1.1
Host: finskills.net
X-API-Key: fh_live_xxxxxxxxxxxxxxxxxxxx

Base URL: https://finskills.net

Unified response envelope for every endpoint:

{
  "success": true,
  "data": { ... },
  "source": "yahoo|coingecko|fred|...",
  "sources": ["primary", "fallback"],
  "cached": false,
  "timestamp": "2026-05-09T12:34:56.000Z"
}

On error: { "success": false, "error": { "code": "...", "message": "..." } }. HTTP status mirrors the failure (401 missing/invalid key, 403 quota, 404 symbol unknown, 429 rate-limited, 5xx upstream).


Decision Guide — pick the right endpoint fast

User asks about Go to
Real-time stock price / batch quotes references/stocks.md
Historical OHLCV / chart references/stocks.md
Company financials / dividends / earnings / options / holders references/stocks.md
Crypto price / market cap / history references/crypto.md
FX rates / currency conversion references/forex.md
GDP, CPI, rates, treasury, FRED series references/macro.md
Indices, sectors, top gainers/losers, breadth, fear-greed, VIX references/market.md
Oil, gold, wheat, BDI, FRED/IMF commodity series references/commodity.md
News headlines, news per ticker references/news.md
10-K / 10-Q / 8-K / company facts / insider trades / 13F references/sec.md
Analyst ratings, price targets, Congress trades, WSB sentiment, earnings calendar, short volume, Fama-French references/quant.md
ETF holdings & list references/etf.md
FDIC bank search, BIN/IIN, FEMA disasters references/other.md
Common patterns (compare, snapshot, screener) references/workflows.md

Prefer /v1/free/... whenever the data exists there — it requires no third-party subscription. Fall back to /v1/... (premium-routed) only when the free variant does not cover the use case.


Quick Capability Map (entire surface)

STOCKS              /v1/stocks/{quote, quotes, history, search, profile,
                                financials, dividends, options, holders,
                                recommendations, earnings}/:symbol

CRYPTO              /v1/[free/]crypto/{price/:coin, markets, history/:coin}

FOREX               /v1/free/forex/{rates, history}

MACRO               /v1/free/macro/{gdp[/:country], indicator/:code,
                                    treasury-rates, inflation}
                    /v1/macro/{indicator/:series, gdp, inflation,
                               interest-rates}

MARKET              /v1/market/{summary, sectors, indices, indices/historical,
                                top-gainers, top-losers, advance-decline,
                                fear-greed, movers, news}
                    /v1/free/market/{sectors, top-gainers, top-losers,
                                      most-active, indices, advance-decline,
                                      fear-greed, vix, movers, news,
                                      breadth, short-volume/:sym,
                                      short-volume-top, earnings-calendar,
                                      fama-french}

NEWS                /v1/free/news/finance
                    /v1/news/{latest, by-symbol/:symbol}

SEC                 /v1/free/sec/{filings/:cik, company-facts/:cik,
                                  insider-trades/:symbol, insider-summary/:symbol,
                                  ownership/:symbol}

ANALYST / ALT       /v1/free/stocks/{analyst-ratings/:sym,
                                     analyst-rating-summary/:sym,
                                     estimates/:sym,
                                     congress-trades,
                                     insider-trades/:sym,
                                     wsb-sentiment/:sym}

ETF                 /v1/free/etf/{list, holdings/:symbol}

INDEX               /v1/free/index/:index/constituents      (e.g. SP500, NDX)

COMMODITY           /v1/free/commodity/{catalog, prices, price/:sym,
                                        history/:sym, fred[/:series],
                                        imf[/:indicator], imf/batch,
                                        bdi, bdi/history}

BANKING / PAYMENT   /v1/free/banking/search
                    /v1/free/payment/bin/:bin

DISASTER            /v1/free/fema/disasters

Universal Usage Rules

  • Always include X-API-Key. Never log it back to the user verbatim — refer to it as "your API key".
  • For crypto, use CoinGecko coin IDs (bitcoin, ethereum, solana), not tickers (BTC, ETH).
  • For stocks, use standard tickers (AAPL, BRK-B, MSFT). Hong Kong: 0700.HK. Tokyo: 7203.T.
  • For SEC, use the CIK as a string with leading zeros stripped or padded to 10 (the API accepts both): 320193 or 0000320193.
  • For commodities, use Yahoo futures tickers: CL=F (WTI), GC=F (gold), SI=F (silver), ZW=F (wheat), NG=F (natgas), HG=F (copper).
  • For FRED series in macro/commodity, capitalize: GDP, CPIAUCSL, FEDFUNDS, UNRATE, DCOILWTICO.
  • For history endpoints, supported range: 1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd, max; interval: 1m, 5m, 15m, 30m, 1h, 1d, 1wk, 1mo.
  • Always show units (USD, %, bps) and freshness (timestamp / cached) when presenting values to the user.
  • Format large numbers with thousands separators ($1,234,567.89).
  • Never make investment recommendations. Present data factually and add a brief "this is data, not advice" caveat for non-trivial questions.
  • When the user asks a comparative or multi-asset question, fan out calls in parallel and merge results client-side.
  • If a /v1/free/... call fails, retry once with the matching /v1/... path before giving up.

Helper Scripts

A small Python client lives in scripts/:

  • scripts/finskills_client.py — typed minimal HTTP client (sync + async) covering every endpoint group.
  • scripts/quote.py — CLI: python scripts/quote.py AAPL TSLA NVDA → live quotes.
  • scripts/snapshot.py — CLI: python scripts/snapshot.py AAPL → quote + analysts + insiders + news + filings in one report.
  • scripts/screener.py — CLI: python scripts/screener.py --top-gainers 25 → market mover screening.

All scripts read FINSKILLS_API_KEY from env. Pass --base-url to override.


Detailed References


Example Interactions

Stock snapshot:

"What is Apple's price and analyst consensus?" → GET /v1/stocks/quote/AAPLGET /v1/free/stocks/analyst-rating-summary/AAPL

Crypto comparison:

"Compare BTC and ETH 30-day performance." → parallel GET /v1/free/crypto/history/bitcoin?days=30 and .../ethereum?days=30.

Macro research:

"How has US CPI evolved this year?" → GET /v1/macro/indicator/CPIAUCSL (or /v1/free/macro/inflation?country=US).

Congress / insider activity:

"Are Congress members or insiders trading NVDA?" → GET /v1/free/stocks/congress-trades?symbol=NVDAGET /v1/free/stocks/insider-trades/NVDA.

SEC filing lookup:

"Latest Apple 10-K?" → GET /v1/free/sec/filings/0000320193 (filter type=10-K).

Market overview:

"How are markets doing today?" → GET /v1/market/summaryGET /v1/free/market/sectorsGET /v1/free/market/fear-greed.

ETF X-ray:

"What's inside SPY?" → GET /v1/free/etf/holdings/SPY.

Commodity macro:

"WTI crude price and 1-year trend." → GET /v1/free/commodity/price/CL=FGET /v1/free/commodity/history/CL=F?range=1y&interval=1d.

See references/workflows.md for fuller multi-step examples.

安全使用建议
Before using this skill, confirm you are comfortable sending financial queries and your Finskills API key to finskills.net. Prefer setting the key in an environment variable, watch any account quota or billing limits, and run the optional Python helpers only in a trusted virtual environment.
功能分析
Type: OpenClaw Skill Name: finskills-one Version: 1.0.0 The finskills-one skill bundle is a comprehensive and well-documented integration for the Finskills financial data API (finskills.net). It includes a clean Python client (finskills_client.py) and several utility scripts for stock quotes, market screening, and ticker snapshots. The instructions in SKILL.md are appropriately scoped, providing clear guidance for the AI agent while explicitly including safety measures such as protecting the user's API key and providing financial advice disclaimers. No evidence of malicious intent, data exfiltration, or harmful prompt injection was found.
能力标签
cryptocan-make-purchasesrequires-sensitive-credentials
能力评估
Purpose & Capability
The documented behavior is consistent with the stated purpose: read-only retrieval of market, macro, SEC, news, crypto, ETF, and related financial data through the Finskills API.
Instruction Scope
The skill is broad and tells the agent to use it for many financial-research requests, but the instructions remain aligned with data lookup and summarization rather than account mutation, trading, or destructive actions.
Install Mechanism
There is no automatic install spec, but optional helper scripts ask users to install Python dependencies from requirements.txt. This is user-directed and proportionate, though the dependency is not pinned exactly.
Credentials
The skill requires sending requests and an API key to https://finskills.net, which is expected for this integration. The registry requirements under-declare the API key even though the SKILL.md and scripts disclose it.
Persistence & Privilege
The provided artifacts do not show background persistence, privilege escalation, local data indexing, credential scraping, or mutation of user accounts or files.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install finskills-one
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /finskills-one 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of FinSkills One — Unified Financial Data. - Provides one-stop access to real-time financial and alternative data via the Finskills REST API. - Supports stocks, crypto, forex, macro data, commodities, ETFs, indices, news, SEC filings, analyst ratings, Congress/influencer trades, banking info, payment BIN lookup, and FEMA disasters. - Features 80+ unified API endpoints with automatic multi-source fallback. - Requires an API key for all requests; guides users to register if needed. - Includes a decision guide and usage rules for accurate endpoint selection and data formatting.
元数据
Slug finskills-one
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

finskills-one 是什么?

One-stop access to real-time financial data via the Finskills REST API at https://finskills.net. Covers stocks (quotes, history, fundamentals, options, holde... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 27 次。

如何安装 finskills-one?

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

finskills-one 是免费的吗?

是的,finskills-one 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

finskills-one 支持哪些平台?

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

谁开发了 finskills-one?

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

💬 留言讨论