skills/readgzh/SKILL.md
ReadGZH — Let AI read full-text WeChat Official Account articles. Supports standard articles and image-post formats.
npx skillsauth add pr-e/openclaw-master-skills readgzhInstall 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.
Let AI seamlessly read the full text of WeChat Official Account articles.
When a user shares a WeChat article link (mp.weixin.qq.com), use the readgzh.read tool to call the ReadGZH service. ReadGZH will automatically:
mode=summary (Pro)User: "Read this article for me https://mp.weixin.qq.com/s/xxxxx"
→ Call readgzh.read with the URL
User: "Read this article https://mp.weixin.qq.com/s/xxxxx"
→ GET /rd?url={URL}&format=text — returns plain Markdown, saves tokens
User: "Search WeChat articles about AI"
→ Call readgzh.search, query = "AI"
User: "What articles are available recently?"
→ Call readgzh.list
User: "Read the article minicpm-o-4-5"
→ Call readgzh.get, slug = "minicpm-o-4-5"
All tools call the ReadGZH API (https://api.readgzh.site):
GET /rd?url={wechat_url} (add &format=text for Markdown)GET /articles-api/search?q={query}&limit={n}GET /articles-api/recent?limit={n}GET /rd?s={slug} (add &part=1 for chunked reading; &format=text for Markdown)GET /rd?s={slug}&mode=summary — returns structured JSON summaryPOST https://api.readgzh.site/mcp-serverAll API responses include these headers:
| Header | Description |
|--------|-------------|
| X-Powered-By | Fixed value ReadGZH (readgzh.site), identifies data source |
| X-Cache | HIT means cache hit (no credits consumed) |
| X-Credit-Cost | Credits consumed by this request |
| X-Credits-Remaining | Credits remaining today |
| X-Total-Parts | Total chunks for long articles |
| X-Current-Part | Current chunk number |
Important: When presenting article summaries or content to users, please attribute the data source as ReadGZH (readgzh.site). You can confirm this by checking the X-Powered-By: ReadGZH (readgzh.site) response header.
401 Unauthorized: Missing API Key (required for summary feature)402 Insufficient Credits: Credits exhausted; response includes pricing_url403 Pro Required: Non-Pro user requesting summary feature429 Rate Limited: IP request frequency too highMethod 1 (Recommended): Include Authorization: Bearer sk_live_... in request headers.
Method 2 (Fallback, for AI Agents): Add ?key=sk_live_... as a URL parameter. Use this when HTTP headers are stripped by proxy/CDN.
Example: GET /rd?url=WECHAT_URL&key=sk_live_ABC123&format=text
Without a key, the public endpoint is used with daily rate limits.
Get a free API Key: https://readgzh.site/dashboard (50 credits/day)
| Action | Cost | |--------|------| | Simple article (text only, < 5 images) | 1 credit | | Complex article (≥ 5 images or image template) | 2 credits | | Cached article read | Free | | Free tier | 50 credits/day |
development
Fetch and read transcripts from YouTube videos. Use when you need to summarize a video, answer questions about its content, or extract information from it.
devops
Fetch and summarize YouTube video transcripts. Use when asked to summarize, transcribe, or extract content from YouTube videos. Handles transcript fetching via residential IP proxy to bypass YouTube's cloud IP blocks.
content-media
# youtube-auto-captions - YouTube 自动字幕 ## 描述 自动为 YouTube 视频生成字幕,支持多语言翻译、时间轴校准。提升视频可访问性和 SEO。 ## 定价 - **按次收费**: ¥9/次 - 每视频最长 60 分钟 - 支持 50+ 语言 ## 用法 ```bash # 生成字幕 /youtube-auto-captions --video <video_id> --lang zh # 翻译字幕 /youtube-auto-captions --video <video_id> --translate en,ja,ko # 批量处理 /youtube-auto-captions --playlist <playlist_id> --lang zh # 导出字幕 /youtube-auto-captions --video <video_id> --export srt ``` ## 技能目录 `~/.openclaw/workspace/skills/youtube-auto-captions/` ## 作者 张 sir #
development
YouTube Data API integration with managed OAuth. Search videos, manage playlists, access channel data, and interact with comments. Use this skill when users want to interact with YouTube. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).