Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

coin-news-openclawcoin news OpenClaw 开发

Agent Skill

coin-news-openclaw 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,920

周安装

117

GitHub Stars

公开资料未说明

下载量

945
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:coin-news-openclaw(coin news OpenClaw 开发)
来源仓库:https://github.com/houdl/coin-news-openclaw
安装命令:
openclaw skills install coin-news-openclaw
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install coin-news-openclaw

简介

通过 OpenClaw 友好的工作流程收集和总结加密货币和硬币市场新闻。当用户请求硬币新闻、加密新闻、特定代币的新消息时使用

SKILL.md

name
coin-news-openclaw
description
Collect and summarize cryptocurrency and coin market news with OpenClaw-friendly workflows. Use when users request coin news, crypto news, token-specific news, daily market briefings, or a replacement for Dify-based news aggregation. Supports configurable sources, keyword scoring, source weighting, deduplication, and structured JSON output for downstream tuning.

Coin News OpenClaw

Collect cryptocurrency news from configurable sources, normalize the articles, score relevance, and return a structured digest that can be tuned over time.

Use This Skill When

  • The user wants a daily or on-demand crypto news digest
  • The user wants news for a specific token or narrative
  • The user wants to replace or compare against an existing Dify news workflow
  • The user wants a configurable pipeline that PA can tune later

Workflow

  1. Read references/sources.yaml to determine enabled sources and source weights.
  2. Read references/scoring.yaml to determine token aliases, topic keywords, negative keywords, and ranking logic.
  3. If deterministic collection is needed, run scripts/fetch_coin_news.py.
  4. Filter the normalized article list to the user’s requested scope.
  5. Rank articles using source weight, keyword matches, recency, and duplicate suppression.
  6. Return a short digest or a structured JSON array for downstream workflow use.

CLI Usage

# Basic usage - JSON output (default)
python3 scripts/fetch_coin_news.py --days 1

# ⭐ Markdown output with clickable links (recommended for reading)
python3 scripts/fetch_coin_news.py --days 1 --format markdown

# Limit number of articles
python3 scripts/fetch_coin_news.py --days 1 --limit 10 --format markdown

# Filter by specific tokens
python3 scripts/fetch_coin_news.py --days 1 --token BTC --token ETH

# Filter by specific topics
python3 scripts/fetch_coin_news.py --days 1 --topic etf --topic regulation

# Adjust token fetch limit (default: 100, max: 250)
python3 scripts/fetch_coin_news.py --days 1 --token-limit 50

# Disable dynamic token fetching (use only YAML config)
python3 scripts/fetch_coin_news.py --days 1 --no-dynamic-tokens

Output Formats

JSON (default)

python3 scripts/fetch_coin_news.py --days 1

Returns structured JSON for programmatic use.

Markdown (recommended for reading)

python3 scripts/fetch_coin_news.py --days 1 --format markdown

Returns formatted markdown with clickable links for each article:

## 1. [Article Title](https://example.com/article)
**来源**: CoinDesk | **时间**: 2026-03-25 | **分数**: 78
**Token**: BTC, ETH
**主题**: etf

Summary text here...
---

Time Range

  • Default: last 24 hours
  • Support explicit day windows such as:

- recent 2 days - recent 3 days - recent 7 days

  • Support common Chinese requests such as:

- 最近2天 - 最近3天 - 最近一周 - 过去7天

  • For deterministic runs, prefer --days <n> over manually converting to hours.
  • If both --days and --hours are provided, --days takes precedence.
  • Recommended mapping:

- 最近2天 -> --days 2 - 最近3天 -> --days 3 - 最近一周 -> --days 7 - 过去7天 -> --days 7

Dynamic Token Fetching

The skill automatically fetches the top 100 tokens (by market cap) from CoinGecko API and merges them with the YAML config:

  • Source: CoinGecko API (free, no API key required)
  • Cache TTL: 24 hours (stored in scoring.yaml under dynamic_tokens)
  • Merge logic: YAML token_aliases overrides dynamic tokens (for manual tuning)
  • Disable: Use --no-dynamic-tokens to use only YAML config

Output Contract

Prefer this JSON structure for workflow handoff:

[
  {
    “title”: “Example headline”,
    “url”: “https://example.com/article”,
    “source”: “CoinDesk”,
    “published_at”: “2026-03-20T09:00:00Z”,
    “summary”: “One paragraph summary.”,
    “score”: 78,
    “matched_topics”: [“bitcoin”, “etf”],
    “matched_tokens”: [“BTC”],
    “duplicate_group_key”: “normalized-title-key”
  }
]

Tuning Rules

  • Do not hardcode source lists in prompts. Update references/sources.yaml.
  • Do not hardcode scoring logic in prompts. Update references/scoring.yaml.
  • Prefer established publications before secondary aggregators.
  • If the user asks for “latest” or “today”, prioritize the last 24 hours and show exact dates.

References

  • references/sources.yaml: source registry and weights
  • references/scoring.yaml: token aliases, topic keywords, penalties, thresholds
  • scripts/fetch_coin_news.py: deterministic RSS collector and scorer

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

77.93%
按下载量换算736

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills