# Send AI News Feed API to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ai-news-feed",
    "name": "AI News Feed API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/FredHJC/ai-news-feed",
    "canonicalUrl": "https://clawhub.ai/FredHJC/ai-news-feed",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ai-news-feed",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ai-news-feed",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api-spec.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ai-news-feed"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ai-news-feed",
    "downloadUrl": "https://openagent3.xyz/downloads/ai-news-feed",
    "agentUrl": "https://openagent3.xyz/skills/ai-news-feed/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ai-news-feed/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ai-news-feed/agent.md"
  }
}
```
## Documentation

### 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:

Sign up / Log in at https://rapidapi.com (free)
Subscribe to the API at https://rapidapi.com/jiachenfred/api/twitter-ai-news-feed (free tier available, no credit card needed)
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.
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.

### Get Feed — GET /v1/feed

Latest posts sorted by recency.

ParamTypeDefaultDescriptionlangen | zhenResponse languagelimit1-10020Number of postsoffsetint0Paginationtagsstring—Comma-separated filter: paper, model_release, funding, product_launch, opinion, tutorial, benchmark, open_source, regulation, industrymin_importance1-10—Minimum importance scoresinceunix ts—Posts 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.

ParamTypeDefaultDescriptionlangen | zhenResponse languagelimit1-5010Number of postshours1-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.

ParamTypeDescriptioncategoryofficial | researcher | media | kolFilter by category

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

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

ParamTypeDefaultDescriptionlangen | zhenResponse languagelimit1-10020Number of postsoffsetint0Pagination

### 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

Get today's top AI news in Chinese: GET /v1/feed/trending?lang=zh&hours=24&limit=10
Find new model releases: GET /v1/feed?tags=model_release&min_importance=5
Track a specific researcher: GET /v1/accounts/karpathy/posts?lang=zh
Get funding news only: GET /v1/feed?tags=funding&min_importance=6
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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: FredHJC
- Version: 1.1.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ai-news-feed)
- [Send to Agent page](https://openagent3.xyz/skills/ai-news-feed/agent)
- [JSON manifest](https://openagent3.xyz/skills/ai-news-feed/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ai-news-feed/agent.md)
- [Download page](https://openagent3.xyz/downloads/ai-news-feed)