/SKILL.md
总结微信公众号文章内容。当用户提供微信公众号文章链接(mp.weixin.qq.com)并要求总结、概括、摘要、快速了解文章内容时使用此 skill。也适用于用户说"帮我看看这篇文章讲什么"、"这篇公众号文章说了啥"、"总结一下这个链接"等请求。只要看到 mp.weixin.qq.com 的链接并且用户想了解内容,就应该使用这个 skill。
npx skillsauth add lzjun567/wechat-summary-skills wechat-summaryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
帮助用户快速理解微信公众号文章的核心内容。
优先使用 WebFetch:
WebFetch URL: <用户提供的链接>
prompt: "提取文章的完整正文内容,包括标题、作者、正文文本。忽略广告、推荐阅读等无关内容。"
如果 WebFetch 遇到反爬验证(返回"环境异常"、"完成验证"等),立即使用 Python 脚本作为备用方案:
python <skill-path>/scripts/fetch_article.py "<文章URL>"
其中 <skill-path> 是这个 skill 的目录路径。
根据获取到的文章内容生成中文总结。
根据文章长度和内容特点,灵活选择总结形式:
如果文章包含以下元素,应在总结中体现:
如果文章是纯叙事或情感类内容,则专注于概括主题和情节。
用户输入:帮我总结一下这篇文章 https://mp.weixin.qq.com/s/xxxxx
输出示例(要点形式):
这篇文章讨论了 AI 在医疗领域的应用前景:
• 目前 AI 诊断准确率已达到 95%,接近资深医生水平
• 主要应用场景包括影像识别、病历分析、药物研发
• 作者认为未来 3-5 年 AI 将成为医生的标配辅助工具
• 文章也提醒了数据隐私和监管合规方面的挑战
输出示例(简短形式):
文章介绍了一款新发布的手机,主打拍照功能,搭载 1 英寸大底传感器,售价 4999 元起,将于下周开售。
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.