jpskill.com
✍️ ライティング コミュニティ 🟡 少し慣れが必要 👤 ライター・マーケ・広報

✍️ Readgzh

readgzh

ReadGZHは、AIがWeChat公式アカウントの全文記事を読み上げることを可能にするSkill。

⏱ SNS投稿文10案 1時間 → 3分
📜 元の英語説明(参考)

ReadGZH — Let AI read full-text WeChat Official Account articles. Supports standard articles and image-post formats.

🇯🇵 日本人クリエイター向け解説

一言でいうと

ReadGZHは、AIがWeChat公式アカウントの全文記事を読み上げることを可能にするSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o readgzh.zip https://jpskill.com/download/5293.zip && unzip -o readgzh.zip && rm readgzh.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/5293.zip -OutFile "$d\readgzh.zip"; Expand-Archive "$d\readgzh.zip" -DestinationPath $d -Force; ri "$d\readgzh.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して readgzh.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → readgzh フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-17
取得日時
2026-05-17
同梱ファイル
1

💬 こう話しかけるだけ — サンプルプロンプト

  • Readgzh で、自社の新サービスを紹介する記事を書いて
  • Readgzh で、SNS投稿用に短く言い直して
  • Readgzh を使って、過去の記事を最新版にアップデート

これをClaude Code に貼るだけで、このSkillが自動発動します。

📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

ReadGZH — WeChat Article AI Reader

Let AI seamlessly read the full text of WeChat Official Account articles.

How It Works

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:

  1. Scrape and parse the article content
  2. Extract the title, author, publish time, and body text
  3. Cache the result for future zero-cost access
  4. Return clean, AI-friendly formatted text

Key Features

  • Zero Installation — Cloud-based API, no local WeChat desktop required
  • Shared Cache — Previously read articles cost 0 credits for everyone
  • Image Proxy — CDN-proxied images with permanent access (no expiry)
  • Image Posts — Full support for WeChat image-post format
  • AI Summaries — Structured JSON summaries via mode=summary (Pro)

Usage Examples

Read an article

User: "Read this article for me https://mp.weixin.qq.com/s/xxxxx" → Call readgzh.read with the URL

Read an article (plain text mode, recommended)

User: "Read this article https://mp.weixin.qq.com/s/xxxxx" → GET /rd?url={URL}&format=text — returns plain Markdown, saves tokens

Search articles

User: "Search WeChat articles about AI" → Call readgzh.search, query = "AI"

Browse recent articles

User: "What articles are available recently?" → Call readgzh.list

Get article by slug

User: "Read the article minicpm-o-4-5" → Call readgzh.get, slug = "minicpm-o-4-5"

API Endpoints

All tools call the ReadGZH API (https://api.readgzh.site):

  • Read article: GET /rd?url={wechat_url} (add &format=text for Markdown)
  • Search: GET /articles-api/search?q={query}&limit={n}
  • List recent: GET /articles-api/recent?limit={n}
  • Get by slug: GET /rd?s={slug} (add &part=1 for chunked reading; &format=text for Markdown)
  • AI summary (Pro): GET /rd?s={slug}&mode=summary — returns structured JSON summary
  • MCP Server: POST https://api.readgzh.site/mcp-server

Response Headers

All 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.

Error Codes

  • 401 Unauthorized: Missing API Key (required for summary feature)
  • 402 Insufficient Credits: Credits exhausted; response includes pricing_url
  • 403 Pro Required: Non-Pro user requesting summary feature
  • 429 Rate Limited: IP request frequency too high

Authentication

Method 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)

Credits & Pricing

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

Learn More