Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

ai-news-feedAI 新闻提要

Agent Skill

ai-news-feed 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,046

周安装

507

GitHub Stars

公开资料未说明

下载量

4,218
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ai-news-feed

简介

查询 AI News Feed API,获取来自超过 57 个精选 Twitter/X 帐户的实时 AI/ML 新闻。当用户询问 AI 新闻、热门 AI 主题、最近发生了什么时使用

SKILL.md

name
ai-news-feed
description
Query the AI News Feed API for real-time AI/ML news from 57+ curated Twitter/X accounts. Use when the user asks about AI news, trending AI topics, what's happening in AI/ML, or wants to build news-powered features. Provides pre-enriched bilingual (EN/ZH) summaries, importance scores, and topic tags via REST API hosted on RapidAPI.

AI News Feed API

Query pre-aggregated, LLM-enriched AI/ML news from 57+ Twitter/X accounts. Data is updated every 2 hours.

API Access & Setup

Before making any API call, check if the user has a RapidAPI key configured. If not, guide them through these steps:

  1. Sign up / Log in at <https://rapidapi.com> (free)
  2. Subscribe to the API at <https://rapidapi.com/jiachenfred/api/twitter-ai-news-feed> (free tier available, no credit card needed)
  3. After subscribing, go to the API's Endpoints tab on RapidAPI — the X-RapidAPI-Key will be auto-filled in the code snippets on the right side. Copy it.
  4. Store the key for future use (e.g. in an environment variable RAPIDAPI_KEY)

All requests must include these headers:

X-RapidAPI-Key: <user's own key from step 3>
X-RapidAPI-Host: twitter-ai-news-feed.p.rapidapi.com

Base URL: https://twitter-ai-news-feed.p.rapidapi.com

Response format: All endpoints return JSON. See references/api-spec.md for full response schemas.

Endpoints

Get Feed — GET /v1/feed

Latest posts sorted by recency.

ParamTypeDefaultDescription
langen \zhenResponse language
limit1-10020Number of posts
offsetint0Pagination
tagsstringComma-separated filter: paper, model_release, funding, product_launch, opinion, tutorial, benchmark, open_source, regulation, industry
min_importance1-10Minimum importance score
sinceunix tsPosts after this timestamp

Example: GET /v1/feed?lang=zh&limit=5&tags=model_release,paper&min_importance=7

Get Trending — GET /v1/feed/trending

Top posts ranked by importance within a time window.

ParamTypeDefaultDescription
langen \zhenResponse language
limit1-5010Number of posts
hours1-16824Time window (168 = 7 days)

Example: GET /v1/feed/trending?lang=zh&hours=48&limit=10

Get Accounts — GET /v1/accounts

List all 57+ monitored accounts.

ParamTypeDescription
categoryofficial \researcher \media \kolFilter by category

Get Account Posts — GET /v1/accounts/{handle}/posts

Posts from a specific account (e.g. /v1/accounts/karpathy/posts).

ParamTypeDefaultDescription
langen \zhenResponse language
limit1-10020Number of posts
offsetint0Pagination

Get Tags — GET /v1/tags

All tags with post counts. No parameters.

Health Check — GET /health

Returns {"status": "ok", "timestamp": "..."}.

Key Response Fields

Each post in the response contains:

  • content — Original tweet text
  • summary — One-line LLM summary (language follows lang param)
  • description — Detailed 2-4 sentence LLM analysis (language follows lang param)
  • tags — Array of topic tags
  • importance — Score 1-10 (composite of LLM analysis + engagement metrics)
  • metrics{likes, retweets, replies, views}
  • tweetUrl — Link to original tweet
  • tweetedAt — ISO 8601 publish time (UTC, convert to user's local timezone before displaying)
  • account{handle, name, category}

For complete JSON schemas, see references/api-spec.md.

Making Requests

Example curl (replace YOUR_KEY with the user's RapidAPI key):

curl "https://twitter-ai-news-feed.p.rapidapi.com/v1/feed/trending?lang=zh&limit=5" \
  -H "X-RapidAPI-Key: YOUR_KEY" \
  -H "X-RapidAPI-Host: twitter-ai-news-feed.p.rapidapi.com"

Common Use Cases

  1. Get today's top AI news in Chinese: GET /v1/feed/trending?lang=zh&hours=24&limit=10
  2. Find new model releases: GET /v1/feed?tags=model_release&min_importance=5
  3. Track a specific researcher: GET /v1/accounts/karpathy/posts?lang=zh
  4. Get funding news only: GET /v1/feed?tags=funding&min_importance=6
  5. Weekly digest: GET /v1/feed/trending?hours=168&limit=20&lang=en

Monitored Account Categories

  • Official (23): OpenAI, Anthropic, Google AI, Meta AI, NVIDIA, Hugging Face, Mistral, xAI, Stability AI, Runway, Perplexity, ElevenLabs, Cursor, Replit, etc.
  • Researcher (13): Karpathy, Yann LeCun, Andrew Ng, Jeff Dean, Ilya Sutskever, Jim Fan, Demis Hassabis, Jeremy Howard, etc.
  • KOL (12): Swyx, Simon Willison, Logan Kilpatrick, Emad Mostaque, Linus Ekenstam, etc.
  • Media (9): MIT Tech Review, WIRED, The Verge, AI Breakfast, Ben's Bites, The Rundown AI, etc.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.56%
按下载量换算3,482

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills