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

newsclawdnewsclawd 命令行

Agent Skill

newsclawd 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

294

周安装

12

GitHub Stars

公开资料未说明

下载量

94
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/codexclawd/codexclawd --skill newsclawd

简介

newsclawd 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于 GitHub 仓库管理、代码协作、Issue 跟踪等开发相关任务场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和联网需求。
  • 安装前建议核实维护状态、是否会触发命令执行或文件读写操作。
  • 可结合原始 README 文档进一步核验具体功能和使用方法。

SKILL.md

NewsClawd 🦞📰

Automated news monitoring and alerting system for your personal AI assistant.

What It Does

  • X/Twitter Monitoring: Track specific accounts, keywords, hashtags
  • Crypto Price Alerts: Binance integration for price thresholds
  • RSS News Feeds: Monitor blogs, news sites, subreddits
  • Web Scraping: Check websites for changes
  • Smart Filtering: AI-powered relevance scoring
  • Multi-Channel Alerts: Telegram, Discord, email notifications

When to Use

  • User says "monitor X for Y" or "alert me when..."
  • User wants price alerts on crypto
  • User wants to track specific Twitter accounts
  • User mentions "news about..." or "keep me updated on..."
  • Setting up cron-based monitoring jobs

Core Components

1. Quick Monitoring Setup

# Monitor a Twitter account
newsclawd twitter --account @elonmusk --keywords "AI,tesla,spacex"

# Set crypto price alert
newsclawd crypto --symbol BTCUSDT --above 70000 --below 60000

# RSS feed monitoring
newsclawd rss --url https://feeds.bbci.co.uk/news/rss.xml --keywords "AI,technology"

# Website change detection
newsclawd web --url https://example.com --selector ".price" --interval 1h

2. Configuration

Config stored in ~/.config/newsclawd/config.json:

{
  "alerts": [
    {
      "type": "twitter",
      "account": "@notabanker1",
      "keywords": ["crypto", "AI"],
      "enabled": true
    },
    {
      "type": "crypto",
      "symbol": "BTCUSDT",
      "above": 70000,
      "below": 60000
    }
  ],
  "notifications": {
    "telegram": true,
    "discord": false,
    "email": false
  }
}

3. Cron Integration

Set up automated checks:

# Every 5 minutes for crypto
*/5 * * * * newsclawd check crypto

# Every hour for news
0 * * * * newsclawd check rss

# Every 15 min for Twitter
*/15 * * * * newsclawd check twitter

Use openclaw cron add to schedule these.

Alert Types

Twitter/X Alerts

  • New tweets from followed accounts
  • Keyword mentions in home timeline
  • Trending topics in specific areas
  • Reply/mention notifications

Crypto Alerts

  • Price above/below thresholds
  • 24h change percentage
  • Volume spikes
  • New listings

RSS/Web Alerts

  • New articles matching keywords
  • Website content changes
  • Price/product availability
  • API status changes

Scripts Reference

ScriptPurpose
monitor.pyMain monitoring daemon
twitter.pyX/Twitter checks (requires bird CLI)
crypto.pyBinance price checks
rss.pyRSS feed parsing
web.pyWebsite change detection
notify.pySend alerts via configured channels

Usage Examples

Example 1: Crypto Price Alert

# User: "Alert me if BTC drops below 60k or goes above 70k"
python3 scripts/crypto.py --symbol BTCUSDT --below 60000 --above 70000

Example 2: Twitter Account Monitor

# User: "Watch @matrixdotorg for any matrix updates"
python3 scripts/twitter.py --account @matrixdotorg --keywords "update,release,security"

Example 3: News RSS Monitor

# User: "Keep me updated on AI news from TechCrunch"
python3 scripts/rss.py --url https://techcrunch.com/category/artificial-intelligence/feed/ --keywords "AI,LLM,OpenAI"

Example 4: Website Change Detection

# User: "Tell me when the price on this product page changes"
python3 scripts/web.py --url "https://store.example.com/product/123" --selector ".price-amount" --interval 1h

Integration with OpenClaw

When user requests monitoring:

  1. Parse the request (what, where, thresholds)
  2. Create/update config
  3. Set up cron job if recurring
  4. Confirm with user
  5. Route alerts back to user's preferred channel

Alert format:

🚨 NewsClawd Alert

Type: Crypto Price
Asset: BTCUSDT
Trigger: Above $70,000
Current: $71,245 (+5.2% 24h)

Time: 2026-02-06 14:23 UTC

Dependencies

  • bird CLI for X/Twitter (optional)
  • python3-requests for HTTP
  • python3-feedparser for RSS (optional, can use built-in)
  • Binance API key for crypto (optional, public endpoints work)

Security Notes

  • Store API keys in ~/.config/newsclawd/.env (gitignored)
  • Rotate Twitter cookies regularly
  • Use read-only API keys where possible
  • Rate limit all checks to avoid bans

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.72%
按下载量换算32

Claude

29.63%
按下载量换算28

Cursor

20%
按下载量换算19

Gemini CLI

9.51%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills