← 返回 Skills 市场
renixaus

Intellectia Stock Forecast 1.0.2

作者 Renixaus · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
1527
总下载
1
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install intellectia-stock-forecast-1-0-2
功能描述
US Stock AI Trading Assistant | Intellectia AI Stock Forecast — Smart analysis of stock entry/exit points, target price predictions, probability calculations, and technical ratings. Supports "Should I Buy" investment decision Q&A.
使用说明 (SKILL.md)

Intellectia Stock Forecast

Single-symbol forecast (yearly predictions) and "Should I Buy?" analysis from the Intellectia API.

Base URL: https://api.intellectia.ai

Overview

This skill covers two endpoints:

  • Forecast (predictions): GET /gateway/v1/stock/screener-public
  • Why / Should I buy (analysis): POST /gateway/v1/finance/should-i-buy

When to use this skill

Use this skill when you want to:

  • Get one stock/crypto quote + yearly predictions (2026–2035)
  • Answer why / should I buy for a specific ticker with a structured rationale

How to ask (high hit-rate)

If you want OpenClaw to automatically pick this skill, include:

  • Intellectia
  • The ticker (e.g. TSLA / AAPL / BTC-USD)
  • Either forecast / prediction (for predictions) or why / should I buy (for analysis)

To force the skill: /skill intellectia-stock-forecast \x3Cyour request>

Copy-ready prompts:

  • "Intellectia forecast for TSLA. Show price, probability, profit, and predictions 2026–2035."
  • "Why should I buy TSLA? Use Intellectia Should I Buy."
  • "Should I buy AAPL? Give me conclusion, catalysts, analyst rating, and 52-week range."
  • "Get Intellectia yearly predictions for BTC-USD (asset_type 2)."

Endpoints

Use case Method Path
Forecast (predictions 2026–2035) GET /gateway/v1/stock/screener-public
Why / Should I buy analysis POST /gateway/v1/finance/should-i-buy

API: Forecast (screener-public)

  • Method: GET /gateway/v1/stock/screener-public
  • Query parameters:
    • ticker (string, required)
    • asset_type (int, required): 0=stock 1=etf 2=crypto
  • Returns: data.list (single object) + data.prediction_2026data.prediction_2035

Example (cURL)

curl -sS "https://api.intellectia.ai/gateway/v1/stock/screener-public?ticker=TSLA&asset_type=0"

Example (Python)

python3 - \x3C\x3C'PY'
import requests
r = requests.get("https://api.intellectia.ai/gateway/v1/stock/screener-public", params={"ticker": "TSLA", "asset_type": 0}, timeout=30)
r.raise_for_status()
data = r.json().get("data") or {}
obj = data.get("list") or {}
print("symbol:", obj.get("symbol"), "price:", obj.get("price"))
for y in range(2026, 2036):
    k = f"prediction_{y}"
    if k in data: print(k, data[k])
PY

API: Why / Should I buy (should-i-buy)

  • Method: POST /gateway/v1/finance/should-i-buy
  • Headers: Content-Type: application/json
  • Body:
{ "asset": { "ticker": "TSLA", "asset_type": 0, "locale": "en" } }
  • Returns: data.action_type, data.conclusion, catalysts, technical analysis, analyst rating, plus price context.

Example (cURL)

curl -sS -X POST "https://api.intellectia.ai/gateway/v1/finance/should-i-buy" \
  -H "Content-Type: application/json" \
  -d '{"asset":{"ticker":"TSLA","asset_type":0,"locale":"en"}}'

Example (Python)

python3 - \x3C\x3C'PY'
import requests
r = requests.post("https://api.intellectia.ai/gateway/v1/finance/should-i-buy",
  json={"asset": {"ticker": "TSLA", "asset_type": 0, "locale": "en"}}, timeout=30)
r.raise_for_status()
d = r.json().get("data") or {}
print("conclusion:", d.get("conclusion"))
print("action_type:", d.get("action_type"))
print("positive_catalysts:", d.get("postive_catalysts"))
print("negative_catalysts:", d.get("negative_catalysts"))
PY

Tool configuration

Tool Purpose
curl One-off GET or POST
python3 / requests Scripts; pip install requests

Using this skill in OpenClaw

clawhub install intellectia-stock-forecast

Start a new OpenClaw session, then:

openclaw skills list
openclaw skills info intellectia-stock-forecast
openclaw skills check

Disclaimer and data

  • Disclaimer: The data and analysis from this skill are for informational purposes only and do not constitute financial, investment, or trading advice. Past performance and model predictions are not guarantees of future results. You are solely responsible for your investment decisions; consult a qualified professional before making financial decisions.
  • Data delay: Data provided by the API (prices, predictions, analysis) may be delayed and is not necessarily real-time. Do not rely on it for time-sensitive trading decisions.
  • Real-time data: For real-time or live data, visit Intellectia

Notes

  • screener-public: one symbol per request.
  • should-i-buy: use when the user asks "why" / "should I buy" for a symbol; use conclusion and catalysts in your answer.
安全使用建议
This skill is internally coherent: it simply calls Intellectia's public API using curl or Python+requests and installs only the 'requests' pip package. Before installing, consider: (1) you are allowing the agent to make outbound requests to api.intellectia.ai — ensure you trust that service and its privacy/accuracy; (2) pip installs run in the agent environment — if you manage sensitive environments, review where packages will be installed; (3) the skill provides informational analysis only — do not treat outputs as trading advice; (4) if the provider later requires API keys or other credentials, re-evaluate those additions before granting them.
功能分析
Type: OpenClaw Skill Name: intellectia-stock-forecast-1-0-2 Version: 1.0.0 The skill is designed to interact with the Intellectia AI API for stock forecasting and analysis. It uses standard tools like `curl` and `python3` with the `requests` library to make HTTP GET and POST requests to `https://api.intellectia.ai`. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, obfuscation, or prompt injection attempts against the agent. All actions are clearly aligned with the stated purpose of fetching financial data from a specific, hardcoded API endpoint.
能力评估
Purpose & Capability
Name/description describe calling Intellectia API for stock forecasts; required binaries (curl, python3) and pip-installed 'requests' are exactly what the skill's SKILL.md examples use. No unrelated permissions or creds are requested.
Instruction Scope
SKILL.md only instructs running curl and python3 requests against https://api.intellectia.ai endpoints. It does not ask the agent to read local files, environment variables, or send data to other endpoints.
Install Mechanism
Install spec is a single pip package ('requests'), a common dependency for the Python examples. No arbitrary downloads, extract steps, or external installers are present.
Credentials
No environment variables, credentials, or config paths are required. This is proportionate for a public-API read-only skill.
Persistence & Privilege
Skill is not always-enabled and does not request elevated or persistent system presence. It does not modify other skills or system settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install intellectia-stock-forecast-1-0-2
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /intellectia-stock-forecast-1-0-2 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of the Intellectia Stock Forecast skill: - Provides US stock, ETF, and crypto yearly forecasts and “Should I Buy?” Q&A via the Intellectia API. - Supports two endpoints: price/entry/exit predictions (2026–2035) and structured investment rationale analysis. - Fast setup instructions for OpenClaw users, including installation and troubleshooting tips. - Example usage for both forecast and decision analysis included (curl/python). - Strong disclaimers: informational use only; not investment advice. - One-symbol queries per request; supports forced invocation and skill auto-matching phrases.
元数据
Slug intellectia-stock-forecast-1-0-2
版本 1.0.0
许可证
累计安装 2
当前安装数 2
历史版本数 1
常见问题

Intellectia Stock Forecast 1.0.2 是什么?

US Stock AI Trading Assistant | Intellectia AI Stock Forecast — Smart analysis of stock entry/exit points, target price predictions, probability calculations, and technical ratings. Supports "Should I Buy" investment decision Q&A. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1527 次。

如何安装 Intellectia Stock Forecast 1.0.2?

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

Intellectia Stock Forecast 1.0.2 是免费的吗?

是的,Intellectia Stock Forecast 1.0.2 完全免费(开源免费),可自由下载、安装和使用。

Intellectia Stock Forecast 1.0.2 支持哪些平台?

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

谁开发了 Intellectia Stock Forecast 1.0.2?

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

💬 留言讨论