Skills Plugins MCP Prompt Model 博客 我的中心

web-to-markdown

网页转 Markdown - 抓取任意网页正文并转成干净的 Markdown,便于阅读/收藏/二次创作

DeepseekModel Curated skill Quality Excellent · 90 v1.0.0

Get

https://deepseekmodel.com/api/download.php?id=dongsheng123132-u-claw-portable-skills-cn-web-to-markdown-skill-md&format=skill
Download .skill Standard format with system_prompt and model_config, ready for any agent framework
The actual content of the system_prompt field in the .skill file.
name web-to-markdown description 网页转 Markdown - 抓取任意网页正文并转成干净的 Markdown,便于阅读/收藏/二次创作 metadata {"openclaw":{"emoji":"🔗"}} 网页转 Markdown 把用户给的网页链接抓下来,提取正文,转成干净的 Markdown,方便保存、总结或二次创作。 能力概述 正文提取 :去掉导航/广告/页脚,只留主体内容 转 Markdown :标题、列表、链接、代码块保留结构 保存 :可写入本地 .md 文件 操作方式 用 Bash 工具。首选 jina.ai 的免费 reader(无需依赖,最省事): # 最简:jina reader 直接返回干净 Markdown(在链接前加 https://r.jina.ai/) curl -s "https://r.jina.ai/https://example.com/article" -o article.md echo "已保存 -> article.md" ; head -40 article.md 离线或 jina 不可用时,用 Python 本地转换: python -c "import markdownify,requests" 2>/dev/null || pip install -q markdownify requests beautifulsoup4 python - << 'PY' import requests, re from bs4 import BeautifulSoup from markdownify import markdownify as md url = "https://example.com/article" html = requests.get(url, timeout =15, headers={ "User-Agent" : "Mozilla/5.0" }).text soup = BeautifulSoup(html, "html.parser" ) for t in soup([ "script" , "style" , "nav" , "footer" , "aside" ]): t.decompose() body = soup.find( "article" ) or soup.find( "main" ) or soup.body out = md(str(body), heading_style= "ATX" ) out = re.sub(r "\n{3,}" , "\n\n" , out).strip() open( "article.md" , "w" ,encoding= "utf-8" ).write(out) print ( "已保存 -> article.md," , len(out), "字" ) PY 使用建议 先问用户要不要保存到文件、文件名 微信公众号/知乎等需要登录的页面可能抓取受限,如失败如实告知 抓取后可顺手做"总结要点",结合 china-search / deepseek-helper 技能
Keywords that activate this skill. Click one to copy it.

This skill does not provide trigger words.

The downloaded .skill package contains the following fields.
Field Description
formatFormat tag (skill/v1)
skill_idUnique skill ID
nameSkill name
versionVersion
descriptionDescription
categoryCategories (array)
trigger_wordsTrigger words
tagsTags
sourceSource
source_urlSource URL (this page)
exported_atExported at (set per download)
system_promptSystem prompt body
model_configModel config: provider / model / temperature / max_tokens / top_p
examplesExamples
install_guideImport guide for Coze / Dify / Claude / custom frameworks
The same skill can be exported in different platform formats.
.skill Standard format with system_prompt and model_config, ready for any agent framework Download
.skillpro Enhanced format with scripts, tools, dependencies and hooks Download
.json Plain JSON export with system_prompt and model parameters only Download
Coze Markdown with frontmatter, for Coze platform import Download
Dify Dify DSL, import directly after creating an app Download

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。