wxgzh

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

wxgzh

wxgzh

封装
@lyhue1991/wxgzh
命令行工具,用于微信公众号文章发布。
Wrapper for the
@lyhue1991/wxgzh
command-line tool, used for publishing articles to WeChat Official Accounts.

核心能力

Core Capabilities

  1. 一键发布文章 - Markdown → 公众号草稿箱
  2. 配置管理 - AppID/AppSecret 配置
  3. 封面生成 - 自动生成或自定义封面图
  4. 格式转换 - Markdown → 公众号 HTML
  1. One-click Article Publishing - Markdown → Official Account Draft Box
  2. Configuration Management - AppID/AppSecret configuration
  3. Cover Generation - Auto-generate or customize cover images
  4. Format Conversion - Markdown → Official Account HTML

工作流程

Workflow

📝 发布文章到公众号

📝 Publish Article to Official Account

当用户表达发布文章意图时,按以下流程执行:
1. 检查安装 → 2. 检查配置 → 3. 发布文章
Step 1: 检查是否安装 wxgzh
bash
command -v wxgzh
如果未安装,执行:
bash
npm install -g @lyhue1991/wxgzh
Step 2: 检查配置
bash
wxgzh config --list
如果未配置,询问用户提供:
  • AppID
    (公众号开发接口管理中的 AppID)
  • AppSecret
    (公众号开发接口管理中的 AppSecret)
然后执行:
bash
wxgzh config --appid 你的AppID --appsecret 你的AppSecret
⚠️ 提醒用户:需要把本机公网 IP 加入公众号后台的 IP 白名单 查看公网 IP:访问 https://ip.sb/
Step 3: 发布文章
bash
wxgzh article.md --author "文章作者姓名"
支持参数:
  • --author <name>
    - 作者名
  • --theme <theme>
    - 主题样式(default/blue/green/red/yellow/brown/black/orange)
  • --cover <path>
    - 指定封面图
  • --digest <text>
    - 文章摘要
  • --enable-comment
    - 开启评论
When users express the intention to publish an article, follow this process:
1. Check Installation → 2. Check Configuration → 3. Publish Article
Step 1: Check if wxgzh is installed
bash
command -v wxgzh
If not installed, execute:
bash
npm install -g @lyhue1991/wxgzh
Step 2: Check Configuration
bash
wxgzh config --list
If not configured, ask the user to provide:
  • AppID
    (AppID from the official account development interface management)
  • AppSecret
    (AppSecret from the official account development interface management)
Then execute:
bash
wxgzh config --appid YourAppID --appsecret YourAppSecret
⚠️ Remind users: You must add your local public IP to the IP whitelist in the official account backend Check public IP: Visit https://ip.sb/
Step 3: Publish Article
bash
wxgzh article.md --author "Author Name"
Supported parameters:
  • --author <name>
    - Author name
  • --theme <theme>
    - Theme style (default/blue/green/red/yellow/brown/black/orange)
  • --cover <path>
    - Specify cover image path
  • --digest <text>
    - Article abstract
  • --enable-comment
    - Enable comments

⚙️ 配置公众号

⚙️ Configure Official Account

当用户只需配置 AppID/AppSecret 时:
bash
wxgzh config --appid 你的AppID --appsecret 你的AppSecret
When users only need to configure AppID/AppSecret:
bash
wxgzh config --appid YourAppID --appsecret YourAppSecret

🖼️ 生成封面图

🖼️ Generate Cover Image

当用户需要生成封面时:
bash
wxgzh cover --title "我的文章" --to .wxgzh/cover.jpg
生成后立即预览结果(macOS):
bash
wxgzh cover --title "我的文章" --to .wxgzh/cover.jpg && open .wxgzh/cover.jpg
查看内置背景:
bash
wxgzh cover --list
When users need to generate a cover image:
bash
wxgzh cover --title "My Article" --to .wxgzh/cover.jpg
Preview the result immediately after generation (macOS):
bash
wxgzh cover --title "My Article" --to .wxgzh/cover.jpg && open .wxgzh/cover.jpg
View built-in backgrounds:
bash
wxgzh cover --list

📄 Markdown 转 HTML

📄 Markdown to HTML

当用户只需转换格式时:
bash
wxgzh md2html --from article.md --to .wxgzh/article.html
When users only need format conversion:
bash
wxgzh md2html --from article.md --to .wxgzh/article.html

注意事项

Notes

  1. IP 白名单 - 调用微信接口前,必须把本机公网 IP 加入公众号后台白名单
  2. 配置文件位置 -
    ~/.config/wxgzh/wxgzh.json
  3. 中间产物 - 默认输出到文章同级目录的
    .wxgzh/
    文件夹
  1. IP Whitelist - Before calling WeChat APIs, you must add your local public IP to the official account backend whitelist
  2. Configuration File Location -
    ~/.config/wxgzh/wxgzh.json
  3. Intermediate Products - Default output to the
    .wxgzh/
    folder in the same directory as the article

快速参考

Quick Reference

bash
undefined
bash
undefined

查看帮助

View help

wxgzh --help
wxgzh --help

查看配置

View configuration

wxgzh config --list
wxgzh config --list

查看主题

View themes

wxgzh config --list-themes
wxgzh config --list-themes

一键发布

One-click publishing

wxgzh article.md --author 你的名字 --theme blue
wxgzh article.md --author YourName --theme blue

分步执行

Step-by-step execution

wxgzh md2html --from article.md --to .wxgzh/article.html wxgzh fix .wxgzh/article.html wxgzh cover --title "标题" --to .wxgzh/cover.jpg wxgzh publish --article .wxgzh/article.html --cover .wxgzh/cover.jpg
undefined
wxgzh md2html --from article.md --to .wxgzh/article.html wxgzh fix .wxgzh/article.html wxgzh cover --title "Title" --to .wxgzh/cover.jpg wxgzh publish --article .wxgzh/article.html --cover .wxgzh/cover.jpg
undefined