← 返回 Skills 市场
nblicb

InvestLog AI

作者 nblicb · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ✓ 安全检测通过
173
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install investlog-ai
功能描述
美股实时数据研究工具:股价行情、估值分析、财报数据、分析师评级、目标价、内部人交易、国会议员交易、机构持仓、ETF持仓、技术指标、分红拆股、财务健康评分。Real-time US stock research: quotes, valuation, financials, analyst ratings, ins...
使用说明 (SKILL.md)

AI-powered US stock research API covering 5,700+ stocks. Ask in natural language, get structured financial data.

How to use

Use the web_fetch tool to query the InvestLog API. The system automatically detects the stock ticker and selects the right data to return.

Basic query

web_fetch url="https://api.investlog.ai/api/v1/query?query=Is+NVDA+overvalued" extractMode=text

Query with specific skill and symbol

For more precise results, specify the skill name and ticker:

web_fetch url="https://api.investlog.ai/api/v1/query?query=AAPL+earnings&skill=financials&symbol=AAPL" extractMode=text

Compound analysis (multiple calls)

For comprehensive stock analysis, make multiple calls to combine different data:

# 1. Get current price and valuation
web_fetch url="https://api.investlog.ai/api/v1/query?query=NVDA+valuation&skill=valuation&symbol=NVDA" extractMode=text

# 2. Get analyst ratings and price targets
web_fetch url="https://api.investlog.ai/api/v1/query?query=NVDA+analyst+ratings&skill=analyst-view&symbol=NVDA" extractMode=text

# 3. Get recent earnings performance
web_fetch url="https://api.investlog.ai/api/v1/query?query=NVDA+earnings+history&skill=financials&symbol=NVDA" extractMode=text

Combine the results from multiple calls to provide a thorough analysis.

Steps

  1. Map user input to query parameters (URL-encode spaces as +)
  2. Call the API endpoint using web_fetch
  3. Extract data from the results array in the response
  4. Reply in user's language (Chinese or English)

Response format

{
  "data": {
    "skill": "valuation",
    "symbol": "NVDA",
    "results": [
      {"tool": "get_stock_quote", "symbol": "NVDA", "data": {"price": 172.7, "change_percent": -3.28}},
      {"tool": "get_financial_ratios", "symbol": "NVDA", "data": {"pe": 34.96, "peg": 0.54}}
    ]
  },
  "usage": {"queries_remaining": 9}
}

Parameters

Parameter Required Description
query Yes Natural language question about US stocks
skill No Skill name for direct routing (see list below). If omitted, auto-detected from query
symbol No US stock ticker (e.g. NVDA, AAPL). If omitted, extracted from query automatically

Available skills

Skill What it returns
stock-quote Real-time price, daily change, multi-period returns (1D/1M/1Y/5Y)
valuation PE, PB, PS, PEG, ROE, margins, FCF yield, DCF intrinsic value
financials Income statement, balance sheet, cash flow, growth rates, earnings history
analyst-view Analyst ratings, rating trends, price targets, EPS/revenue estimates
company-profile Business description, sector, executives, compensation, revenue segmentation
insider-activity Insider buy/sell transactions, quarterly insider trading statistics
congress-trades US Senate and House stock trading records
fund-exposure Institutional 13F holdings, ETF exposure, ETF holdings
financial-health Altman Z-Score, Piotroski F-Score, composite financial rating
dividends-splits Dividend history, stock splits, shares float
news Latest stock-specific news articles
market-overview Top gainers/losers/most active, IPO calendar, index constituents (no symbol required)
technicals RSI, MACD, SMA, EMA, Bollinger, KDJ, ATR, OBV, CCI, crossover signals

Security

  • Network: GET requests to https://api.investlog.ai only
  • No files read or written on your machine
  • No system commands executed
  • API key is optional (first 10 queries free, no key needed)

Setup

  • Free trial: No setup needed. First 10 queries are free — just start asking.
  • API key: After free trial, register at https://api.investlog.ai to get your API key and pass it as a query parameter: &api_key=il_your_key
  • Plans: Basic ($9.9/mo, 100 queries/day) | Pro ($19.9/mo, 300 queries/day)

Output guidelines

  • Present data in a clear, readable format
  • For list data (holdings, transactions), use tables when possible
  • Highlight key metrics and trends
  • Include the stock ticker with every data point

Chinese language support

Supports Chinese natural language queries:

  • "巴菲特前十大持仓股票是哪几个?"
  • "英伟达的分析师评级是怎么样的?"
  • "哪个参议员买了PLTR?"
安全使用建议
This skill is instruction-only and simply calls a third-party HTTPS API (api.investlog.ai). Before installing, consider: (1) queries and any user-supplied symbols or company names will be sent to that external service — if you need privacy for portfolio or trade plans, avoid sending sensitive data; (2) after the free quota you must register and supply an api_key in query parameters if you want more requests — treat that key like a secret; (3) verify the API domain and its privacy/terms (make sure it is the legitimate investlog.ai) and that TLS/HTTPS is used; (4) check rate/usage limits so the agent won't unexpectedly exhaust your quota. No other environment access or installs are requested. If you need higher assurance, ask the publisher for their privacy policy or a signed provenance of the skill.
功能分析
Type: OpenClaw Skill Name: investlog-ai Version: 1.0.2 The investlog-ai skill is a legitimate tool for US stock research that interacts with the InvestLog API (api.investlog.ai). It provides instructions for the agent to use the web_fetch tool to retrieve financial data, analyst ratings, and trading records based on user queries. The code and instructions are transparent, align with the stated purpose, and do not exhibit any signs of data exfiltration, malicious execution, or prompt injection.
能力评估
Purpose & Capability
Name/description (US stock research) align with the runtime instructions: all examples call https://api.investlog.ai and request market/financial data. No unrelated binaries, env vars, or config paths are requested.
Instruction Scope
SKILL.md instructs only to build URL-encoded queries and call the InvestLog API via web_fetch, then extract the results array and reply in the user's language. It does not instruct reading local files, accessing unrelated environment variables, or contacting other endpoints.
Install Mechanism
No install spec or code files are present (instruction-only). There is no download/extract activity or third-party package installation described.
Credentials
The skill requires no environment variables or credentials for the free tier; an API key is optional after the free quota—this matches the stated API usage model and is proportionate to the skill's purpose.
Persistence & Privilege
Skill is not always-enabled and does not request persistent system privileges or modify other skills. Autonomous invocation is allowed by platform default but the skill itself does not escalate privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install investlog-ai
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /investlog-ai 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
- Updated description to include Chinese content and clarified both Chinese and English language support. - Emphasized that 10 free queries are available without requiring an API key. - Added Chinese features and usage info directly in the description for better accessibility to Chinese-speaking users. - No changes to API usage or technical functionality.
v1.0.1
- Added a homepage field with a link to https://api.investlog.ai. - Removed the guideline to not mention the data source in outputs.
v1.0.0
Initial release of investlog-ai: - Real-time US stock research covering 5,700+ stocks with natural language queries. - Supports quotes, earnings, valuation, analyst ratings, insider trades, congress trades, fund holdings, technical analysis, dividends, and financial health. - Flexible API usage via web_fetch, with skill-based data routing and automatic ticker detection. - Clear formatting guidelines to present results effectively, including table support for lists. - No setup needed for free trial (10 queries); supports both English and Chinese queries.
元数据
Slug investlog-ai
版本 1.0.2
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

InvestLog AI 是什么?

美股实时数据研究工具:股价行情、估值分析、财报数据、分析师评级、目标价、内部人交易、国会议员交易、机构持仓、ETF持仓、技术指标、分红拆股、财务健康评分。Real-time US stock research: quotes, valuation, financials, analyst ratings, ins... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 173 次。

如何安装 InvestLog AI?

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

InvestLog AI 是免费的吗?

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

InvestLog AI 支持哪些平台?

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

谁开发了 InvestLog AI?

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

💬 留言讨论