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

theshort-news短消息

Agent Skill

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

总安装

4,093

周安装

164

GitHub Stars

1

下载量

1,325
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install theshort-news

简介

theshort-news 聚合 theshort.ai 平台的精简新闻情报流。

  • 按主题与标签过滤,返回带摘要的文章元数据。
  • 支持自定义订阅源与关键词告警设置。
  • 数据更新频率为每 15 分钟一次,存在轻微延迟。
  • 部分内容需付费订阅才能查看全文。theshort-news 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
theshort-news
description
Real-time news intelligence from theshort.ai. Search topic- and tag-scoped news feeds, fetch article details with summaries, list available topics and tags. Use this skill whenever you need to ground a response in fresh, vetted news rather than the model's training data.
version
0.1.0
author
TQDM Inc. <contact@tqdm.org>
tags
[news, search, current-events, grounding, rag, real-time, summaries]
license
MIT-0

theshort-news (OpenClaw skill)

Read access to theshort.ai's curated news index for any agent running on OpenClaw. Authenticated by API key (X-API-Key header), billed in credits against the developer account that owns the key. The skill exposes topic-scoped search, tag-scoped search, full article details, and the topic / tag catalogs the key has access to.

When to use this skill

  • The user is asking about something that happened recently and the model's

built-in knowledge is likely stale.

  • The user wants a one-line or one-paragraph summary of a news event.
  • The agent needs to ground a longer answer in real, attributable sources

with canonicalUrl links.

  • The user is asking about trending stories in a given topic (politics,

finance, tech, etc.) or geography (country / region).

Do not use this skill for opinion pieces, social media posts, or fact-checking arbitrary user-supplied claims — the index is curated news only.

Authentication

Every request requires an X-API-Key header. Keys are issued from the OpenClaw dashboard. Each key has its own topic + tag access scope, set when the key was created.

X-API-Key: tsk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Base URL

https://theshort.ai/api/external

Credit costs

Every successful call deducts credits from the developer account's wallet. Credits drain in this order: PLAN_INCLUDEDPROMOTOPUP. If a call fails server-side, credits are refunded automatically.

OperationEndpointCost (credits)
topics_listGET /topics0
tags_listGET /tags0
news_searchGET /news1
news_detailGET /news/{id}1
brief_generate(future)3

If the wallet balance is insufficient the call returns HTTP 402 Payment Required with {"error":"insufficient_credits", ...}. Direct the user to the credits panel to top up or upgrade their plan.

Endpoints

GET /health

Liveness probe. Returns {"status":"ok"}. Free, unauthenticated, useful as a connectivity check before issuing billable calls.

curl https://theshort.ai/api/external/health

GET /topics

List the topic taxonomy this API key is allowed to query. Topics are hierarchical (tech, tech.ai, tech.cybersecurity, …). Use the returned keys verbatim in GET /news?topic=....

curl -H "X-API-Key: $TSK" https://theshort.ai/api/external/topics

Response shape:

[
  { "topicId": 12, "topicKey": "tech", "topicName": "Technology" },
  { "topicId": 18, "topicKey": "tech.ai", "topicName": "Artificial Intelligence" }
]

GET /tags

List the tags this key has access to. Tags are flat labels (no hierarchy) attached to news items by the editorial team. Use these for very narrow filters that topics can't express.

curl -H "X-API-Key: $TSK" https://theshort.ai/api/external/tags

Response shape:

[
  { "tagId": 7,  "tagName": "openai"        },
  { "tagId": 19, "tagName": "central-banks" }
]

GET /news

The primary search endpoint. Returns the most recent news items the key has access to, optionally filtered by topic and/or tag. Multiple filters of the same kind are OR-ed; topic and tag filters are AND-ed.

Query params:

ParamTypeNotes
topicrepeated stringTopic key from /topics. Repeat to OR.
tagrepeated stringTag name from /tags. Repeat to OR.
limitint (1–200)Max items to return. Default 50.
langen / ru / azLanguage for the summary field. Defaults to en (English). When ru or az is requested, the summary field is populated with the Russian / Azerbaijani translation; if a translation is missing for a particular row the API transparently falls back to English so summary is never empty.
curl -H "X-API-Key: $TSK" \
  "https://theshort.ai/api/external/news?topic=tech.ai&tag=openai&limit=10"

# Russian summaries
curl -H "X-API-Key: $TSK" \
  "https://theshort.ai/api/external/news?topic=tech.ai&lang=ru&limit=10"

# Azerbaijani summaries
curl -H "X-API-Key: $TSK" \
  "https://theshort.ai/api/external/news?topic=tech.ai&lang=az&limit=10"

Response shape:

{
  "consumer": "acme-corp",
  "appliedTopics": ["tech.ai"],
  "appliedTags": ["openai"],
  "limit": 10,
  "items": [
    {
      "id": 12345,
      "summary": "OpenAI announced ...",
      "contentType": "news",
      "countryCode": "US",
      "sourceName": "Reuters",
      "canonicalUrl": "https://reuters.com/...",
      "publishedAt": "2026-04-11T08:30:00Z",
      "topics": ["tech", "tech.ai"],
      "tags": ["openai"]
    }
  ]
}

The response only contains a single summary field — there is no separate title. The first sentence of summary is the headline; treat the whole field as the article text. If you need both English and Russian text for the same article, make two requests: one with lang=en (or no lang at all) and another with lang=ru.

When grounding an answer for the user, always cite canonicalUrl so they can verify the source.

GET /news/{id}

Fetch a single news item by id. Useful when the user clicks through from a search result. Returns the same ExternalNewsItemDTO shape as items in GET /news — the same lang parameter applies.

Returns 404 if the item is outside the key's topic/tag scope, even if it exists in the underlying database — this is a billable call regardless (the key paid for the lookup).

curl -H "X-API-Key: $TSK" https://theshort.ai/api/external/news/12345
curl -H "X-API-Key: $TSK" "https://theshort.ai/api/external/news/12345?lang=ru"

Error handling

All errors come back as JSON with an error field and a human-readable message. The HTTP status indicates the category:

StatusMeaningAction
401Missing or invalid X-API-KeyStop. Ask the user to provide a key.
402Insufficient credits in the developer walletDirect to credits panel.
403Topic/tag is outside this key's scopePick a different filter.
404News item not foundTry GET /news to discover valid ids.
429Rate-limited (per-key quota)Back off and retry.
5xxServer error — credits are auto-refundedRetry with exponential backoff.

Recommended workflow

  1. Discover scope — call GET /topics and GET /tags once at agent

startup (these are free) and cache the results for the session.

  1. Search — call GET /news with the user's topic of interest. Apply

limit=10 for chat replies, larger for batch jobs.

  1. Drill down — when the user asks "tell me more about story X", call

GET /news/{id} for the full payload.

  1. Cite — when summarizing, always include the canonicalUrl and

sourceName so the user can verify.

  1. Watch the wallet — surface the response from `GET

/api/v1/me/billing` (admin / dashboard) when the user asks "how many credits do I have left".

Example conversation

User: "What's happening with OpenAI today?" Agent (internal): 1. GET /news?topic=tech.ai&tag=openai&limit=5 2. Pick the top 3 by publishedAt. 3. For the most relevant: GET /news/{id} to grab the full summary. Agent (reply): "Three things in the past 24 hours: …. _Sources: Reuters, TechCrunch, The Verge_."

Plans and pricing

PlanMonthly creditsPrice
FREE100 (one-time)$0
PRO10,000$29 / month
SCALE50,000$119 / month

Top-up packs (one-time): TOPUP_1K (1000 credits, $10), TOPUP_5K (5000, $45), TOPUP_20K (20,000, $160). All purchases and plan changes happen through the credits panel.

Support

  • Dashboard: https://openclaw.theshort.ai
  • Issues: contact@tqdm.org

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.47%
按下载量换算1,066

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills