← Back to Skills Marketplace
🔌
tencent-news
by
TencentNewsTeam
· GitHub ↗
· v1.0.9
· MIT-0
1073
Downloads
1
Stars
7
Active Installs
9
Versions
Install in OpenClaw
/install tencent-news
Description
7×24 新闻资讯搜索工具,聚焦中国国内信息和国际热点。支持新闻搜索,包括热点新闻、早报晚报、实时资讯、领域新闻和天气信息查询。当用户需要搜索新闻、新闻热榜、新闻早晚报、订阅新闻推送、获取相关新闻资讯和查询天气信息时使用。
Usage Guidance
This skill is coherent: it delegates news retrieval to a local CLI named 'tencent-news-cli' and the wrappers/scripts match that purpose. Before installing or running anything: 1) Do not blindly run curl | sh or PowerShell | iex — instead download the installer script, inspect it, and verify checksums if available; 2) Prefer installing the CLI from an official release page or repository, or examine the setup.sh/setup.ps1 contents served from mat1.gtimg.com; 3) Inspect the full scripts/_common.ts (the shipped copy here was truncated) to ensure there is no hidden behavior; 4) Run the CLI in a limited environment (non-root) and monitor network activity the first time it runs; 5) Keep in mind the CLI will manage an API key (apikey-set/get/clear) — only set a key you trust to be used by this client. If you cannot inspect the installer/binary or the missing part of the source, treat the install step as higher risk and consider not installing.
Capability Analysis
Type: OpenClaw Skill
Name: tencent-news
Version: 1.0.9
The skill bundle is classified as suspicious because it instructs the AI agent to perform high-risk installation procedures, specifically using `curl | sh` and PowerShell `iex` to download and execute remote scripts from `mat1.gtimg.com` (as seen in SKILL.md and references/installation-guide.md). This pattern facilitates remote code execution and the deployment of an opaque binary (tencent-news-cli) whose internal logic cannot be verified. While the behavior appears aligned with the stated purpose of providing news updates from Tencent, the reliance on unverified remote artifacts and the automated execution of shell scripts pose a significant security risk. IOCs: https://mat1.gtimg.com/qqcdn/qqnews/cli/hub/tencent-news/setup.sh, https://mat1.gtimg.com/qqcdn/qqnews/cli/hub/tencent-news/setup.ps1.
Capability Tags
Capability Assessment
Purpose & Capability
Name/description match the implementation: the skill is a wrapper that runs a local 'tencent-news-cli' to fetch news and manage an API key. Required files and helpers (run-cli, cli-state) all relate to locating, invoking, and managing the CLI.
Instruction Scope
SKILL.md confines the agent to using the provided CLI and explicitly forbids falling back to websearch or auto-opening browsers. It instructs the agent to run local scripts (run-cli, cli-state) and follow the CLI help output. The installation instructions referenced (installation-guide/update-guide) contain remote-install commands (curl|sh, PowerShell | iex) which expand the runtime actions beyond strictly local invocation.
Install Mechanism
No install spec in registry, but the references recommend piping remote scripts from https://mat1.gtimg.com/... (Tencent CDN) into sh/PowerShell. Download-and-execute patterns are high-risk even when hosted on an apparent vendor CDN; the Windows bun installer suggestion also uses a remote bootstrap script. If you plan to install, prefer inspecting the installer scripts and downloaded binaries first rather than piping directly to a shell.
Credentials
The skill declares no required environment variables or credentials. It uses an optional TENCENT_NEWS_INSTALL to override the install root (reasonable). API Key handling is delegated to the CLI (apikey-set/get/clear). No unrelated secrets or config paths are requested by the skill itself.
Persistence & Privilege
always is false; the skill does not request permanent platform-wide privileges and does not modify other skills. It can be invoked autonomously by the agent (default behavior), which is normal and expected for skills.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install tencent-news - After installation, invoke the skill by name or use
/tencent-news - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.9
**重大变更:所有 CLI 调用方式统一切换为 run-cli 脚本**
- 新增 scripts/run-cli.sh 和 scripts/run-cli.ts,移除原 install-cli.* 脚本
- 所有 CLI 业务命令除 cli-state 外均需经 run-cli 脚本调用,不再直接用 cliPath
- 明确环境就绪、安装、更新、API Key 配置等操作流程和诊断方式
- 输出逻辑新增:末尾引导用户「是否需要创建定时任务,每天自动获取相关新闻」
- 支持领域新闻和天气信息查询,增强说明和使用场景
v1.0.8
tencent-news v1.0.8
- 更新描述与英文简介,更突出新闻搜索功能和支持类型。
- 输出格式补充“时间”字段,可显示新闻发布时间。
- 微调 description 字段,明确适用场景(新闻搜索、热榜、早晚报等)。
- 其他原有功能和核心流程保持不变。
v1.0.7
Version 1.0.7
- Bumped version number to 1.0.7.
- No other content or file changes detected in this release.
v1.0.5
- Improved CLI update logic: if the `update` command fails or is unsupported, the skill now automatically attempts a force install via the install script, instead of only suggesting manual updates.
- After a force install, switches to the newly returned CLI path for all subsequent operations.
- Only guides users to manual update instructions if both update methods fail.
- No other changes.
v1.0.4
Major skill refactor: Platform scripting is unified and CLI management is simplified.
- Switched all macOS/Linux scripting from TypeScript to portable shell scripts (`.ts` → `.sh`) for core CLI management.
- Updated environment setup flow—status, install, and update steps now use shell scripts on Unix, TypeScript only on Windows.
- Rewrote documentation to clarify platform-specific commands and workflow separation.
- Significantly revised API Key handling logic and instructions.
- Removed legacy scripts (`api-key.ts`, `check-update.ts`) and introduced new shell-based scripts.
v1.0.3
- Added English and Chinese descriptions for the skill.
- Updated the main description to clarify supported features and usage scenarios.
- Bumped version to 1.0.1 in documentation.
- No changes to core workflow or functionality.
v1.0.2
- 全面重写脚本系统,统一为 `bun` + TypeScript 实现,移除 POSIX shell 和 PowerShell 脚本。
- 移除对 Node.js、Python、平台特定 Shell 的依赖,精简安装与环境检测流程。
- 所有操作(安装/更新/Key 配置等)通过 TypeScript 脚本完成,并添加 bun 安装与可用性检测说明。
- `Output Format` 格式调整,新闻输出更为简洁,末尾来源注明样式优化。
- Windows 和 macOS/Linux 平台脚本逻辑彻底统一,简化平台兼容说明。
v1.0.1
- Improved Windows support: removed all tracked PowerShell scripts and replaced them with a unified template at references/windows-powershell-templates.md.
- Now, on Windows, scripts/*.ps1 files are restored from the template as needed before execution, instead of being tracked directly.
- Updated workflow and documentation to describe the new Windows PowerShell script restoration process.
- Output format and command execution instructions remain consistent; only script management on Windows changes.
v1.0.0
- Initial release of the Tencent News skill.
- Provides 7×24 news coverage focusing on domestic Chinese and international topics.
- Supports access to trending news, briefings, real-time updates, news rankings, domain-specific news, and subject-based queries.
- News is fetched via platform scripts with clear CLI workflow; detailed instructions for macOS, Linux, and Windows included.
- Output format is standardized for clear presentation of news items.
- Robust error handling ensures only official CLI results are used, with guidance for solving platform-specific issues.
Metadata
Frequently Asked Questions
What is tencent-news?
7×24 新闻资讯搜索工具,聚焦中国国内信息和国际热点。支持新闻搜索,包括热点新闻、早报晚报、实时资讯、领域新闻和天气信息查询。当用户需要搜索新闻、新闻热榜、新闻早晚报、订阅新闻推送、获取相关新闻资讯和查询天气信息时使用。 It is an AI Agent Skill for Claude Code / OpenClaw, with 1073 downloads so far.
How do I install tencent-news?
Run "/install tencent-news" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is tencent-news free?
Yes, tencent-news is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does tencent-news support?
tencent-news is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created tencent-news?
It is built and maintained by TencentNewsTeam (@tencentnewsteam); the current version is v1.0.9.
More Skills