华尔街见闻新闻

v1.0.0

获取华尔街见闻财经新闻。当用户询问华尔街见闻、wallstreetcn、财经新闻、市场动态、金融资讯、股市行情、热文、头条、搜索文章时使用。使用 web_fetch 直接调用 API 获取最新文章、头条文章、热文和搜索结果。

0· 133·0 current·0 all-time
bywallstreetcn@wallstreetinsights
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the runtime instructions: the SKILL.md tells the agent to call specific Wallstreetcn API endpoints and format article results. No unrelated binaries, env vars, or installs are requested.
Instruction Scope
Instructions are narrowly scoped to using web_fetch against the listed API endpoints, parsing the returned JSON, and producing a formatted Markdown output. There are no instructions to read local files, access other system state, or exfiltrate data.
Install Mechanism
No install spec or code files are present (instruction-only), so nothing is written to disk or installed. This is the lowest-risk installation model.
Credentials
The skill requests no environment variables or credentials and does not reference config paths. The lack of secrets or unrelated credentials is proportionate to the stated purpose.
Persistence & Privilege
always is false and the skill does not request persistent system privileges or modify other skills' configurations. Autonomous invocation is allowed (platform default) but not combined with other red flags.
Assessment
This skill is internally consistent, but before installing: (1) verify the API host (api-one-wscn.awtmt.com) is an official/expected Wallstreetcn endpoint if you require provenance; (2) confirm that fetching and republishing article excerpts complies with the site's terms and licensing; (3) be aware web_fetch will make network calls — monitor rate limits and traffic if concerned; (4) since no credentials are requested, do not supply any secrets to this skill. If you need stronger assurance, ask the skill publisher for the official API documentation or a homepage/source link.

Like a lobster shell, security has layers — review code before you run it.

latestvk970ew8pf4tk5gbt494skg4rmh850cc1
133downloads
0stars
1versions
Updated 5d ago
v1.0.0
MIT-0

华尔街见闻新闻

使用 web_fetch 直接调用华尔街见闻 API 获取财经文章。

API 接口

类型URL
最新https://api-one-wscn.awtmt.com/apiv1/content/information-flow?channel=global&accept=article&limit=10
头条https://api-one-wscn.awtmt.com/apiv1/content/carousel/information-flow?channel=global&limit=10
热文https://api-one-wscn.awtmt.com/apiv1/content/articles/hot?period=all
搜索https://api-one-wscn.awtmt.com/apiv1/search/article?query=关键词&limit=10

数据解析

最新/头条文章

data.items[].resource = {
  "title": "标题",
  "uri": "链接",
  "content_short": "摘要",
  "display_time": 时间戳,
  "author": {"display_name": "作者名"}
}

热文

data.day_items[] = {
  "title": "标题",
  "uri": "链接",
  "display_time": 时间戳,
  "pageviews": 浏览量
}

输出格式

使用 Markdown 格式输出(不使用代码块),保持简洁高效:

格式模板

---
### 📰 华尔街见闻 · WALLSTREETCN
---

**1.【文章标题】**

内容摘要(前 50 字左右)...

> [阅读全文](https://wallstreetcn.com/articles/...) · 作者:作者名 · 2026-03-27 11:00

---

**2.【文章标题】**

内容摘要(前 50 字左右)...

> [阅读全文](https://wallstreetcn.com/articles/...) · 作者:作者名 · 2026-03-27 10:30

---

> 💡 华尔街见闻 —— 帮助投资者理解世界

输出要求

  1. 品牌标识:顶部使用 ### 📰 华尔街见闻 · WALLSTREETCN
  2. 分隔线:使用 --- 分隔每条新闻
  3. 标题格式**序号。【标题】** 加粗显示
  4. 摘要:单独一段,约 50 字,自动换行
  5. 元信息:使用引用格式 >,包含链接、作者、日期,用 · 分隔
  6. 品牌口号:底部使用 > 💡 华尔街见闻 —— 帮助投资者理解世界
  7. 不使用代码块:确保文本自动换行

Comments

Loading comments...