# Send Intellectia Stock Forecast 1.0.2 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": "intellectia-stock-forecast-1-0-2",
    "name": "Intellectia Stock Forecast 1.0.2",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Renixaus/intellectia-stock-forecast-1-0-2",
    "canonicalUrl": "https://clawhub.ai/Renixaus/intellectia-stock-forecast-1-0-2",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/intellectia-stock-forecast-1-0-2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=intellectia-stock-forecast-1-0-2",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/intellectia-stock-forecast-1-0-2"
    },
    "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/intellectia-stock-forecast-1-0-2",
    "downloadUrl": "https://openagent3.xyz/downloads/intellectia-stock-forecast-1-0-2",
    "agentUrl": "https://openagent3.xyz/skills/intellectia-stock-forecast-1-0-2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/intellectia-stock-forecast-1-0-2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/intellectia-stock-forecast-1-0-2/agent.md"
  }
}
```
## Documentation

### 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 <your 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 caseMethodPathForecast (predictions 2026–2035)GET/gateway/v1/stock/screener-publicWhy / Should I buy analysisPOST/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_2026 … data.prediction_2035

### Example (cURL)

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

### Example (Python)

python3 - <<'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 - <<'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

ToolPurposecurlOne-off GET or POSTpython3 / requestsScripts; 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Renixaus
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/intellectia-stock-forecast-1-0-2)
- [Send to Agent page](https://openagent3.xyz/skills/intellectia-stock-forecast-1-0-2/agent)
- [JSON manifest](https://openagent3.xyz/skills/intellectia-stock-forecast-1-0-2/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/intellectia-stock-forecast-1-0-2/agent.md)
- [Download page](https://openagent3.xyz/downloads/intellectia-stock-forecast-1-0-2)