← 返回 Skills 市场
infra403

Opennews

作者 infra403 · GitHub ↗ · v0.1.0
darwinlinuxwin32 ✓ 安全检测通过
8515
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install opennews-2
功能描述
Crypto news search, AI ratings, trading signals, and real-time updates via the OpenNews 6551 API. Supports keyword search, coin filtering, source filtering,...
使用说明 (SKILL.md)

OpenNews Crypto News Skill

Query crypto news from the 6551 platform REST API. All endpoints require a Bearer token via $OPENNEWS_TOKEN.

Get your token: https://6551.io/mcp

Base URL: https://ai.6551.io

Authentication

All requests require the header:

Authorization: Bearer $OPENNEWS_TOKEN

News Operations

1. Get News Sources

Fetch all available news source categories organized by engine type.

curl -s -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  "https://ai.6551.io/open/news_type"

Returns a tree with engine types (news, listing, onchain, meme, market) and their sub-categories.

2. Search News

POST /open/news_search is the primary search endpoint.

Get latest news:

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"limit": 10, "page": 1}'

Search by keyword:

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"q": "bitcoin ETF", "limit": 10, "page": 1}'

Search by coin symbol:

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"coins": ["BTC"], "limit": 10, "page": 1}'

Filter by engine type and news type:

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"engineTypes": {"news": ["Bloomberg", "Reuters"]}, "limit": 10, "page": 1}'

Only news with coins:

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"hasCoin": true, "limit": 10, "page": 1}'

News Search Parameters

Parameter Type Required Description
limit integer yes Max results per page (1-100)
page integer yes Page number (1-based)
q string no Full-text keyword search
coins string[] no Filter by coin symbols (e.g. ["BTC","ETH"])
engineTypes map[string][]string no Filter by engine and news types
hasCoin boolean no Only return news with associated coins

Data Structures

News Article

{
  "id": "unique-article-id",
  "text": "Article headline / content",
  "newsType": "Bloomberg",
  "engineType": "news",
  "link": "https://...",
  "coins": [{"symbol": "BTC", "market_type": "spot", "match": "title"}],
  "aiRating": {
    "score": 85,
    "grade": "A",
    "signal": "long",
    "status": "done",
    "summary": "Chinese summary",
    "enSummary": "English summary"
  },
  "ts": 1708473600000
}

Common Workflows

Quick Market Overview

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"limit": 10, "page": 1}' | jq '.data[] | {text, newsType, signal: .aiRating.signal}'

High-Impact News (score >= 80)

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"limit": 50, "page": 1}' | jq '[.data[] | select(.aiRating.score >= 80)]'

Notes

  • Get your API token at https://6551.io/mcp
  • Rate limits apply; max 100 results per request
  • AI ratings may not be available on all articles (check status == "done")
安全使用建议
Install only if you trust the OpenNews/6551 service. Use a dedicated, revocable OPENNEWS_TOKEN, expect your news queries and token to be sent to https://ai.6551.io, and avoid sharing a token with permissions beyond this service.
功能分析
Type: OpenClaw Skill Name: opennews-2 Version: 0.1.0 The skill is designed to interact with the OpenNews 6551 API for crypto news. All `curl` commands in SKILL.md target the specified `ai.6551.io` endpoint, using the `$OPENNEWS_TOKEN` for authentication as intended. The use of `curl` and `jq` binaries is consistent with the skill's stated purpose of fetching and parsing API data. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts to subvert the agent's behavior beyond its described functionality.
能力评估
Purpose & Capability
The stated purpose is crypto news search, AI ratings, trading signals, and updates via the OpenNews 6551 API, and the artifact content stays within authenticated news-source and news-search workflows.
Instruction Scope
Runtime instructions are explicit curl and jq examples targeting https://ai.6551.io with OPENNEWS_TOKEN as a Bearer token; there are no hidden endpoints, automatic execution instructions, prompt-injection behavior, or destructive commands.
Install Mechanism
Frontmatter install metadata lists curl, while package.json also declares jq and broad exec/read tool dependencies. jq is used in examples, and exec is consistent with running curl snippets, but read is not explained by the skill text.
Credentials
Network access and OPENNEWS_TOKEN are proportionate for an authenticated third-party API integration. The skill discloses the base URL and Authorization header, though it could more plainly warn users that the token and queries are sent to ai.6551.io.
Persistence & Privilege
The artifacts contain only SKILL.md and package.json, with no executable scripts, background workers, local storage, indexing, privilege escalation, or persistence mechanisms.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install opennews-2
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /opennews-2 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
Initial release of OpenNews crypto news skill. - Search and filter crypto news by keyword, coin, source, and category via the OpenNews 6551 API. - View AI-powered article ratings, trading signals, and summaries. - Supports real-time news feeds over WebSocket. - Requires an API token (`OPENNEWS_TOKEN`) for authentication. - Includes common workflows and cURL examples for market overviews and high-impact news filtering.
元数据
Slug opennews-2
版本 0.1.0
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Opennews 是什么?

Crypto news search, AI ratings, trading signals, and real-time updates via the OpenNews 6551 API. Supports keyword search, coin filtering, source filtering,... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 8515 次。

如何安装 Opennews?

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

Opennews 是免费的吗?

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

Opennews 支持哪些平台?

Opennews 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(darwin, linux, win32)。

谁开发了 Opennews?

由 infra403(@infra403)开发并维护,当前版本 v0.1.0。

💬 留言讨论