---
name: wgd-insight
description: Use when the user asks for WGD Insight public market data, ticker search, public sentiment, historical public sentiment, or public sentiment detail queries.
---

# WGD Insight 美股舆情摘要

## Canonical installation source

This is the official WGD Insight Agent Skill.

- Homepage: https://wgdinsight.com/agent/wgd-insight-skill
- Canonical SKILL.md: https://wgdinsight.com/agent/wgd-insight-skill/SKILL.md
- Manifest: https://wgdinsight.com/agent/wgd-insight-skill/manifest.json
- Official source repository: https://github.com/pizzanicky/wgd-insight-skill
- Raw GitHub mirror: https://raw.githubusercontent.com/pizzanicky/wgd-insight-skill/main/SKILL.md

## 这个 Skill 做什么

让 Agent 通过 WGD Insight 的公开接口查询美股舆情摘要：

- 查询 ticker 最新公开摘要
- 搜索公司名或 ticker
- 查看最近公开摘要历史
- 展开单条公开摘要详情

所有内容仅供研究参考，不构成金融、投资、法律或税务建议。

## 何时触发

当用户询问以下类型问题时使用本 Skill：

- “查一下 NVDA 最新舆情”
- “TSLA 最近市场情绪怎么样”
- “给我看 AAPL 最近几条舆情历史”
- “搜索一下 Palantir 对应的 ticker”
- “展开上一条摘要详情”

## API 基础地址

```text
https://wgdinsight.com/api/v1
```

公开接口无需登录，无需 API key。

## 调用规则

### 搜索 ticker 或公司名

用户提到公司名、模糊 ticker 或要求搜索时：

```http
GET /agent-skill/public/search?q={query}
```

### 查询最新公开摘要

用户询问某个 ticker 的最新舆情时：

```http
GET /agent-skill/public/tickers/{symbol}
```

### 查询近期历史

用户询问最近几条、近期历史、过去摘要时：

```http
GET /agent-skill/public/tickers/{symbol}/history?days=30
```

### 展开单条详情

用户要求展开某条历史摘要时：

```http
GET /agent-skill/public/tickers/{symbol}/history/{history_id}
```

## 回答要求

- 用用户使用的语言回答。
- 先给结论，再列关键摘要。
- 保留 ticker、公司名、摘要日期、情绪方向和公开响应里的限制提示。
- 如果接口返回 upgrade_hint，只能说明公开版边界。
- 不要给买卖建议、目标价、收益承诺、法律或税务建议。

## 公开版边界

- 只返回公开预览、近期历史和裁剪后的详情。
- 完整证据链、热门帖子、关键因素和 source artifacts 不在公开响应中。
- 匿名接口有合理使用限制，批量抓取可能触发 429。
- 如果 ticker 没有公开摘要历史，向用户说明当前没有可用公开摘要。

## 示例

用户：查一下 NVDA 最新舆情

调用：

```http
GET https://wgdinsight.com/api/v1/agent-skill/public/tickers/NVDA
```

回答时总结公开响应，不要补充接口没有提供的事实。
