Tencent Cloud Article Extractor
提取腾讯云开发者社区文章内容并转换为 Markdown 格式。当用户需要抓取、解析或保存腾讯云文章时使用此技能。支持自动提取标题、作者、发布时间、正文内容,并生成格式规范的 Markdown 文档。触发词:腾讯云文章、抓取文章、解析文章、cloud.tencent.com/developer/article
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 42 · 0 current installs · 0 all-time installs
byJiang Shuaijie@codeteenager
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description describe extracting Tencent Cloud articles and producing Markdown; the included script fetches the article URL, parses page JSON, extracts metadata and content, and renders Markdown — this is proportionate and expected.
Instruction Scope
SKILL.md and the script only perform an HTTP GET to the provided cloud.tencent.com URL, parse the page's __NEXT_DATA__, transform content to Markdown, and optionally write a local file. They do not read other files, environment variables, or transmit data to third-party endpoints.
Install Mechanism
No install spec; this is an instruction+script skill. The code is plain JavaScript (no external downloads or extract steps). Risk from installation is minimal — user runs the included script locally.
Credentials
The skill requires no environment variables, credentials, or special config paths. Network access to cloud.tencent.com is necessary and justified by the purpose.
Persistence & Privilege
Flags show always:false and user-invocable:true. The skill does not request persistent system privileges or modify other skills/configs. Autonomous invocation is allowed by default but is not combined with other concerning privileges.
Assessment
This skill appears to do exactly what it says: fetch a public cloud.tencent.com article and convert it to Markdown. Before installing/running: (1) review the script file locally (it runs on your machine) to ensure you are comfortable executing it; (2) be aware it needs network access to cloud.tencent.com and will reference images by their remote URLs (it does not download images); (3) the skill has no homepage/source information — if provenance is important, consider obtaining the source from a trusted location or author; (4) watch output file paths to avoid accidental overwrites; and (5) respect copyright/terms of use when copying or storing article content.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.1
Download ziparticlefeishulatestmarkdownscraper
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
腾讯云文章提取器
从腾讯云开发者社区提取文章内容并转换为 Markdown 格式。
快速开始
node ~/.openclaw/workspace/skills/tencent-cloud-article-extractor/scripts/extract_article.mjs <文章URL> [输出文件]
示例:
# 输出到控制台
node ~/.openclaw/workspace/skills/tencent-cloud-article-extractor/scripts/extract_article.mjs https://cloud.tencent.com/developer/article/2636150
# 保存到文件
node ~/.openclaw/workspace/skills/tencent-cloud-article-extractor/scripts/extract_article.mjs https://cloud.tencent.com/developer/article/2636150 article.md
支持的文章格式
- URL 格式:
https://cloud.tencent.com/developer/article/<文章ID> - 自动提取:标题、作者、发布时间、字数统计、阅读时长
- 支持的内容类型:标题、段落、代码块、图片、列表、引用、链接
输出格式
生成的 Markdown 文档包含:
# 文章标题
> 作者:作者名
> 发布时间:2026-03-10 14:29
> 来源:腾讯云开发者社区
> 原文链接:https://cloud.tencent.com/developer/article/xxx
---
**文章统计**:字数 4738 | 预计阅读 17 分钟
---
## 正文内容...
工作原理
- 发送 HTTP 请求获取文章页面
- 从页面
__NEXT_DATA__中提取 JSON 数据 - 解析结构化内容并转换为 Markdown
- 输出到控制台或保存到文件
注意事项
- 需要网络访问腾讯云网站
- 文章必须是公开可访问的
- 部分需要登录的文章可能无法提取
- 图片以原始 URL 引用,不会下载到本地
错误处理
| 错误 | 原因 | 解决方案 |
|---|---|---|
无效的腾讯云文章 URL | URL 格式不正确 | 检查 URL 是否符合 cloud.tencent.com/developer/article/xxx 格式 |
未找到文章数据 | 页面结构变化或需要登录 | 确认文章公开可访问 |
文章内容为空 | 文章可能已被删除 | 检查原文链接是否有效 |
更新日志
v1.0.0 (2026-03-16)
- ✅ 初始版本
- ✅ 支持腾讯云文章提取
- ✅ Markdown 格式输出
Files
2 totalSelect a file
Select a file to preview.
Comments
Loading comments…
