← Back to Skills Marketplace
infra403

Daily News

by infra403 · GitHub ↗ · v0.1.0 · MIT-0
darwinlinuxwin32 ✓ Security Clean
8554
Downloads
0
Stars
4
Active Installs
1
Versions
Install in OpenClaw
/install 6551-daily-news
Description
Daily news and hot topics via the 6551 API. Supports news categories, hot news articles, and trending tweets by category.
README (SKILL.md)

Daily News Skill

Query daily news and hot topics from the 6551 platform REST API. No authentication required.

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


News Operations

1. Get News Categories

Get all available news categories and subcategories.

curl -s -X GET "https://ai.6551.io/open/free_categories"

2. Get Hot News

Get hot news articles and trending tweets by category.

curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro"
Parameter Type Required Description
category string Yes Category key from free_categories
subcategory string No Subcategory key

Response:

{
  "success": true,
  "category": "crypto",
  "subcategory": "defi",
  "news": {
    "success": true,
    "count": 10,
    "items": [
      {
        "id": 123,
        "title": "...",
        "source": "...",
        "link": "https://...",
        "score": 85,
        "grade": "A",
        "signal": "bullish",
        "summary_zh": "...",
        "summary_en": "...",
        "coins": ["BTC", "ETH"],
        "published_at": "2026-03-17T10:00:00Z"
      }
    ]
  },
  "tweets": {
    "success": true,
    "count": 5,
    "items": [
      {
        "author": "Vitalik Buterin",
        "handle": "VitalikButerin",
        "content": "...",
        "url": "https://...",
        "metrics": { "likes": 1000, "retweets": 200, "replies": 50 },
        "posted_at": "2026-03-17T09:00:00Z",
        "relevance": "high"
      }
    ]
  }
}

Common Workflows

Get All Categories

curl -s -X GET "https://ai.6551.io/open/free_categories"

Get Hot Crypto News

curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro"

Get DeFi Subcategory News

curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro&subcategory=defi"

Notes

  • No authentication required
  • Data is cached and updated periodically
  • If data is still being generated, a 503 response will be returned
Usage Guidance
Install only if you are comfortable with the agent making network requests to ai.6551.io to retrieve public news and trending-topic data. The reviewed artifact does not show credential use, local data access, mutation, or persistence.
Capability Assessment
Purpose & Capability
The stated purpose is daily news and trending topics, and the artifact is limited to fetching categories, hot news, and trending tweet data from the disclosed 6551 API.
Instruction Scope
Instructions are simple user-run GET examples; there are no account actions, file edits, hidden steps, prompt overrides, or agent-behavior changes.
Install Mechanism
Install metadata requires curl and suggests Homebrew for curl, which is proportionate to the documented API examples.
Credentials
The skill makes outbound network requests to ai.6551.io, but it does not request credentials, local files, environment variables, or private user data.
Persistence & Privilege
No persistence, background service, elevated privilege, memory use, credential store access, or long-running worker behavior is described.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install 6551-daily-news
  3. After installation, invoke the skill by name or use /6551-daily-news
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.0
Initial release of Daily News skill. - Provides daily news and trending topics using the 6551 API. - Supports fetching news categories, hot news articles, and trending tweets by category/subcategory. - No authentication required. - Compatible with macOS, Linux, and Windows. - Requires curl for API calls.
Metadata
Slug 6551-daily-news
Version 0.1.0
License MIT-0
All-time Installs 4
Active Installs 4
Total Versions 1
Frequently Asked Questions

What is Daily News?

Daily news and hot topics via the 6551 API. Supports news categories, hot news articles, and trending tweets by category. It is an AI Agent Skill for Claude Code / OpenClaw, with 8554 downloads so far.

How do I install Daily News?

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

Is Daily News free?

Yes, Daily News is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Daily News support?

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

Who created Daily News?

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

💬 Comments