安全扫描
OpenClaw
安全
high confidenceThe skill's requests, instructions, and install steps are consistent with a read-only, public REST API news fetcher; nothing requested appears disproportionate or unrelated to the stated purpose.
评估建议
This skill is coherent and low-risk: it only issues unauthenticated HTTP GETs to https://ai.6551.io and does not request credentials or local file access. Before installing, consider: (1) network traffic will go to ai.6551.io — requests include query parameters and your IP, so review the domain/publisher if you need privacy guarantees; (2) the install step only lists Homebrew (macOS) whereas the skill also claims Linux/Windows support — ensure curl is available on your OS or supply it yourself; ...详细分析 ▾
✓ 用途与能力
Name/description match the runtime instructions: the SKILL.md only performs unauthenticated GETs against the documented 6551 API endpoints. Required binary (curl) is appropriate for this purpose.
✓ 指令范围
Instructions are narrow and well-scoped: they only run curl GET requests to public endpoints on https://ai.6551.io. The SKILL.md does not instruct the agent to read local files, access credentials, or transmit unrelated data.
ℹ 安装机制
Install spec installs curl via a Homebrew formula, which is reasonable on macOS but may be irrelevant on Linux/Windows (SKILL.md lists darwin, linux, win32). This is a minor incoherence: the skill otherwise declares curl as required but provides only a brew-based installer.
✓ 凭证需求
No environment variables, credentials, or config paths are requested. The skill operates against public endpoints with no auth, which is proportionate to its purpose.
✓ 持久化与权限
The skill is not always-enabled and does not request elevated persistence or modify other skills/config. Autonomous invocation is allowed by platform default but is not combined with any sensitive access here.
安全有层次,运行前请审查代码。
运行时依赖
🖥️ OSmacOS · Linux · Windows
版本
latestv0.1.02026/3/17
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.
● 无害
安装命令 点击复制
官方npx clawhub@latest install 6551-daily-news
镜像加速npx clawhub@latest install 6551-daily-news --registry https://cn.clawhub-mirror.com
技能文档
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 |
{
"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
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制
免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制