← Back to Skills Marketplace
infra403

Opennews

by infra403 · GitHub ↗ · v0.1.0
darwinlinuxwin32 ✓ Security Clean
8515
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install opennews-2
Description
Crypto news search, AI ratings, trading signals, and real-time updates via the OpenNews 6551 API. Supports keyword search, coin filtering, source filtering,...
README (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")
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install opennews-2
  3. After installation, invoke the skill by name or use /opennews-2
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug opennews-2
Version 0.1.0
License
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Opennews?

Crypto news search, AI ratings, trading signals, and real-time updates via the OpenNews 6551 API. Supports keyword search, coin filtering, source filtering,... It is an AI Agent Skill for Claude Code / OpenClaw, with 8515 downloads so far.

How do I install Opennews?

Run "/install opennews-2" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Opennews free?

Yes, Opennews is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Opennews support?

Opennews is cross-platform and runs anywhere OpenClaw / Claude Code is available (darwin, linux, win32).

Who created Opennews?

It is built and maintained by infra403 (@infra403); the current version is v0.1.0.

💬 Comments