
Daily News
- 656 installs
- 316 repo stars
- Updated March 17, 2026
- 6551team/daily-news
daily-news is an agent skill that queries the 6551 platform REST API for news categories, hot articles, and trending tweets so developers can inject current events into coding-agent workflows without authentication.
About
daily-news is a user-invocable agent skill (metadata version 1.0.0) that calls the unauthenticated 6551 platform REST API to fetch news categories, hot news articles, and category-filtered trending tweets. The skill requires only curl on darwin, linux, or win32 and installs curl via Homebrew when needed. Developers reach for daily-news when an AI assistant needs same-day headlines, sector hot lists, or social trend signals inside a terminal or IDE session instead of opening a browser tab. Invocation returns structured news and tweet payloads suitable for summarization, alert drafting, or grounding downstream research prompts.
- Queries the 6551 REST API with zero authentication
- Retrieves all news categories and subcategories
- Fetches hot news and trending tweets by category or subcategory
- Supports macro, crypto, defi and additional verticals
- curl-based with native OS support across macOS, Linux, and Windows
Daily News by the numbers
- 656 all-time installs (skills.sh)
- Ranked #633 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/6551team/daily-news --skill daily-newsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 656 |
|---|---|
| repo stars | ★ 316 |
| Security audit | 2 / 3 scanners passed |
| Last updated | March 17, 2026 |
| Repository | 6551team/daily-news ↗ |
How do agents fetch trending news without API keys?
Instantly pull fresh news categories, hot articles, and trending tweets directly into their agent workflows.
Who is it for?
Developers wiring live news and social-trend context into OpenClaw or similar agent workflows on macOS, Linux, or Windows.
Skip if: Developers who need authenticated paywalled feeds, custom RSS pipelines, or production news-ingestion infrastructure.
When should I use this skill?
The user asks for today's headlines, hot news by category, trending tweets, or 6551 news API data inside an agent.
What you get
Structured news category lists, hot-article payloads, and trending-tweet results from the 6551 API.
- news category list
- hot article payloads
- trending tweet results
By the numbers
- Metadata version 1.0.0
- Supports three OS targets: darwin, linux, win32
Files
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
{
"name": "daily-news",
"version": "0.1.0",
"description": "Daily news and hot topics skill for 6551 API",
"main": "SKILL.md"
}
Related skills
How it compares
Choose daily-news for quick, keyless headline and tweet trends inside agents; use a dedicated news MCP or RSS pipeline when you need auth, retention, or ETL.
FAQ
Does daily-news require an API key?
daily-news calls the public 6551 platform REST API and does not require authentication. The skill only needs curl available on darwin, linux, or win32, with Homebrew install support for curl when missing.
What data can daily-news return?
daily-news retrieves news categories, hot news articles, and trending tweets filtered by category from the 6551 API. Results are structured for agent summarization or downstream prompt grounding.
Is Daily News safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.