Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

youmind-wechat-article优铭微信文章

Agent Skill

youmind-wechat-article 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,818

周安装

545

GitHub Stars

2

下载量

4,491
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:youmind-wechat-article(优铭微信文章)
来源仓库:https://github.com/mindy-youmind/youmind-wechat-article
安装命令:
openclaw skills install youmind-wechat-article
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install youmind-wechat-article

简介

youmind-wechat-article 用于撰写和发布微信公众号文章,支持热门话题挖掘、去AI语音写作及精美格式排版。

  • 适合在 OpenClaw 中需要快速生成公众号内容、制作封面或优化图文排版时使用。
  • 通过关键词或主题输入,由 AI 端到端完成选题、文稿撰写与格式美化。
  • 安装命令:openclaw skills install youmind-wechat-article;需确认 API 权限与内容合规边界。
  • 建议结合原始 README 核验功能细节,避免触发未授权的联网或文件操作。

SKILL.md

name
youmind-wechat-article
version
1.0.1
description
|
triggers
platforms
metadata
openclaw
emoji
✍️
primaryEnv
YOUMIND_API_KEY
requires
anyBins
["node", "npm", "python3"]
env
["YOUMIND_API_KEY"]
allowed-tools

AI WeChat Article Writer — From Topic to Draft Box in One Prompt

Write professional WeChat Official Account articles with AI that doesn't sound like AI. Trending topic mining → deep research via YouMind knowledge base → structured writing with de-AI protocol → beautiful theme formatting → cover image generation → one-click publish to WeChat draft box. No manual formatting, no copy-paste.

Get API Key → · More Skills →

Onboarding

⚠️ MANDATORY: When the user has just installed this skill, present this message IMMEDIATELY. Do NOT ask "do you want to know what this does?" — just show it. Translate to the user's language:

✅ AI WeChat Article Writer installed! Tell me your topic and I'll write and publish a WeChat article for you. Try it now: "帮我写一篇关于 AI 编程的公众号文章" What it does: - Plan topics from trending hotspots and SEO keywords - Write professional articles with de-AI voice - Format with beautiful WeChat-optimized themes - Generate cover images with AI (4 providers supported) - Publish directly to your WeChat draft box Setup (one-time): 1. Install & configure: cd toolkit && npm install && npm run build && cd .. && pip install -r requirements.txt && cp config.example.yaml config.yaml 2. Get YouMind API Key → fill youmind.api_key in config.yaml 3. Get WeChat AppID & AppSecret from 微信开发者平台 → fill wechat.appid and wechat.secret, add your public IP (curl -s https://ifconfig.me) to the API IP whitelist No WeChat API yet? You can still write and preview locally — just skip the WeChat config steps. See the Setup section below for detailed step-by-step instructions with screenshots. Need help? Just ask!

For first-run setup and client onboarding details, see references/operations.md.

Usage

Provide a topic, brand/client name, or raw Markdown for publishing.

Write from a topic:

帮我写一篇关于 AI 编程趋势的公众号文章

Write for a specific client:

给 demo 客户写一篇推文,主题是远程办公最佳实践

Format and publish raw Markdown:

把这篇 Markdown 排版成公众号样式并发布到草稿箱

Interactive mode:

用交互模式帮我写一篇公众号文章,我想自己选题和框架

Setup

Prerequisites: Node.js ≥ 18, Python ≥ 3.9, a verified WeChat Official Account with API access.

Step 1 — Install Dependencies

cd toolkit && npm install && npm run build && cd ..
pip install -r requirements.txt

Step 2 — Create Config File

cp config.example.yaml config.yaml

Step 3 — Get YouMind API Key (Recommended)

YouMind API Key 用于知识库语义搜索、联网搜索、文章归档、AI 生图(Nano Banana Pro)。不配也能跑,但会丧失这些增强能力。

  1. 打开 YouMind API Keys 页面
  2. 登录后点击 「Create API Key」 创建新密钥
  3. 复制生成的 sk-ym-xxxx 格式密钥
  4. 填入 config.yamlyoumind.api_key 字段
youmind:
  api_key: "sk-ym-xxxxxxxxxxxxxxxxxxxx"

Step 4 — Get WeChat AppID & AppSecret

  1. 打开 微信开发者平台,点击 「前往使用」 登录
  2. 在「我的业务」面板点击 「公众号」 进入管理页
  3. 基础信息 页顶部复制 AppID
  4. 在「开发密钥」区域点击 重置 获取 AppSecret(仅展示一次,立即保存)
  5. 填入 config.yaml
wechat:
  appid: "wx_your_appid"
  secret: "your_secret"
  author: "你的作者名"
详细图文步骤见 README.md

Step 5 — Configure IP Whitelist

微信公众号 API 拒绝所有不在白名单中的 IP 请求,必须配置后才能发布。

获取公网 IP:

# macOS / Linux
curl -s https://ifconfig.me

# Windows PowerShell
(Invoke-WebRequest -Uri "https://ifconfig.me" -UseBasicParsing).Content.Trim()

拿到 IP 后,在上一步的微信开发者平台公众号页面 →「开发密钥」→ API IP 白名单 → 点击 编辑 → 粘贴 IP 保存。

家庭宽带 IP 会变。发布报 IP 错误时重新获取 IP 并更新白名单即可。云服务器 / CI 环境通常是静态 IP,配一次就行。

Step 6 — Image Provider Keys (Optional)

配图使用降级链:AI 生图 → 图库搜索 → CDN 预制封面下载 → 仅输出 prompt。不配任何 key 也不影响发布。

Provider获取方式config.yaml 字段
YouMind (Nano Banana Pro)使用 Step 3 的 YouMind API Key,无需额外配置image.providers.youmind.api_key(留空则自动使用 youmind.api_key
Google Gemini (Imagen)Google AI Studio 创建 API keyimage.providers.gemini.api_key
OpenAI (GPT Image)OpenAI Platform 创建 API keyimage.providers.openai.api_key
豆包 (Seedream)火山引擎控制台 创建 API keyimage.providers.doubao.api_key

config.yaml 中设置 image.default_provider 指定首选 provider,或留空让 Skill 自动选第一个有 key 的。

Verify Setup

配置完成后,对 Agent 说一句试试:

"帮我写一篇关于 AI 编程的公众号文章"

如果配置有问题,Skill 会在对应步骤报错并给出修复提示——不会整体卡死。

For client onboarding and post-setup operations, see references/operations.md.

Skill Directory

This skill is a folder. Read files on demand — do NOT load everything upfront.

PathPurposeWhen to read
references/pipeline.mdFull step-by-step execution (Steps 1–8)When running the writing pipeline
references/operations.mdPost-publish commands, client onboarding, themes, first-run setupWhen handling operational tasks
references/writing-guide.mdPre-writing framework, depth architecture, de-AI protocol, voiceStep 4 (writing)
references/frameworks.md5 article frameworks with execution detailStep 3.5 (framework selection)
references/topic-selection.md4-dimension topic evaluation modelStep 3 (topic generation)
references/seo-rules.mdTitle optimization, keyword density, digest, tagsStep 5 (SEO pass)
references/visual-prompts.mdCover and inline image design, prompt engineeringStep 6 (visual AI)
references/theme-dsl.mdCustom theme design language (integrates Impeccable if installed)When creating custom themes — auto-detects & offers to install Impeccable
references/youmind-integration.mdKnowledge base API, search, archivingWhen using YouMind features
references/cli-reference.mdAll CLI command syntaxWhen running toolkit commands
references/wechat-constraints.mdWeChat platform technical limits, safe CSS, size capsWhen debugging rendering or format issues
references/style-template.mdClient config template with field guideWhen onboarding a new client
references/openapi-document.mdYouMind OpenAPI full endpoint schemasWhen calling YouMind API directly
references/skill-maintenance.mdSkill self-maintenance, validation, architecture guardrailsWhen improving or refactoring this skill itself
references/builtin-themes.jsonCSS examples for 10 built-in themesWhen customizing themes
clients/{client}/style.yamlClient brand voice, topics, blacklist, themeStep 1 (load config)
clients/{client}/playbook.mdClient-specific writing rules (if exists)Step 4 (writing)
clients/{client}/history.yamlPublished article historyStep 2.5 (dedup)
config.yamlAPI credentials (WeChat, YouMind, image providers)Step 1 (first-run check)
toolkit/dist/*.jsExecutable scripts (run from toolkit/)Various steps
scripts/*.pyPython scripts (trending topics, SEO keywords)Steps 2, 2.5

Execution Modes

Auto (default): Run Steps 1–5 automatically. Before Step 6 image generation, proactively ask once about image scope and style unless the user already specified them. Then continue through Steps 6–8. Only pause elsewhere if a step AND its fallback both fail, required info is missing, or user explicitly asks to pause.

Interactive: Triggered by "interactive mode", "let me choose", "show me the topics/frameworks/themes". Pauses at: topic selection, framework choice, image plan, theme selection. All other steps run automatically.


Critical Quality Rules

Non-negotiable. Violating any one means the article has failed:

  1. Read references/writing-guide.md BEFORE writing. The pre-writing framework and de-AI protocol are mandatory.
  2. Zero AI-sounding text. Run the full 4-level de-AI protocol from writing-guide.md.
  3. H1 title: 20–28 Chinese characters. The converter extracts H1 as the WeChat title.
  4. Digest: ≤54 Chinese characters. WeChat enforces a 120 UTF-8 byte limit.
  5. Word count: 1,500–2,500. Sweet spot for completion rate is 1,500–2,000.
  6. Specificity over abstraction. Every claim must be grounded in concrete detail.
  7. Depth over polish. Run the Depth Checklist (writing-guide.md) before the De-AI pass. If the article's core thesis is something from the top 3 Google results, it needs a rewrite, not a polish.
  8. Obey the client's blacklist — both words and topics. No exceptions.
  9. Playbook overrides writing-guide. If playbook.md exists for this client, it takes priority for voice and style decisions.
  10. Before generating visuals, proactively ask about image scope and style. Do not silently assume. If the host supports AskUserQuestion, use it. Otherwise ask a concise plain-text question.
  11. Always publish to drafts. Step 7 publishes directly to WeChat draft box. Do NOT ask — this is mandatory and automatic.

Pipeline Overview

Read references/pipeline.md for full execution details of each step.

StepActionKey reference
1Load client style.yaml + routing
1.5Mine YouMind knowledge base for source materialyoumind-integration.md
2Fetch trending topics via fetch_hotspots.py
2.5Dedup against history.yaml + SEO keyword scoring
3Generate 10 topics, score, select besttopic-selection.md
3.5Generate 5 framework proposals, select bestframeworks.md
4Write article with pre-writing thinking + depth checkwriting-guide.md
5SEO optimization + full de-AI passseo-rules.md
6Design and generate cover + inline imagesvisual-prompts.md
7Publish to WeChat drafts (mandatory, automatic)cli-reference.md
7.5Append to history + archive to YouMindyoumind-integration.md
8Report results: title, digest, tags, media_id

Routing shortcuts:

  • User gave a specific topic → Skip Steps 2–3, go 1.5 → 3.5
  • User gave raw Markdown → Skip to Step 7

Resilience: Never Stop on a Single-Step Failure

Every step has a fallback. If a step AND its fallback both fail, skip that step and note it in the final output.

StepFallback
1.5 Knowledge miningSkip, empty knowledge_context
2 Trending topicsYouMind web-search → WebSearch → ask user
2.5 SEO scoringSelf-estimate, mark "estimated"
3 Topic generationAsk user for a manual topic
6 Image generationOutput prompts, skip images
7 PublishingGenerate local HTML preview
7.5 History/ArchiveWarn, continue
Python/Node missingTell user install command

Operations

For post-publish commands (polish, rewrite, change theme, stats review), client onboarding, learn-from-edits, custom themes, and first-run setup, read references/operations.md.

If the request is about improving this skill itself, refactoring its structure, or checking for documentation drift, read references/skill-maintenance.md.


Gotchas — Common Failure Patterns

"The AI Essay": The article reads like a well-organized explainer piece — correct, comprehensive, boring. Fix: re-read writing-guide.md's voice architecture and pre-writing framework. The article needs a PERSON behind it, not an information system.

"The Generic Hot Take": Writing about a trending topic without adding any insight beyond what is already in the top 10 search results. If you cannot identify your unique angle in one sentence, pick a different topic.

"The Word-Count Pad": Hitting 2,000 words by being verbose instead of being deep. Every paragraph should survive the test: "if I delete this, does the article lose something specific?" If not, delete it.

"The Pretty But Empty Article": Beautiful formatting, nice images, zero substance. Visual quality cannot compensate for thin content. Get the writing right first.

"The Blacklist Miss": Forgetting to check style.yaml blacklist against the final article. Always do a final scan before publishing.

"The Broken Pipeline Halt": Stopping the entire flow because one step failed. NEVER do this. Use the fallback. If the fallback fails, skip and note it. The user can always fix individual pieces manually.

Comparison

FeatureThis SkillManual Writing135 EditorXiumi
AI topic mining
De-AI voice protocolN/A
AI cover generation✅ (4 providers)
One-click draft publishing
YouMind knowledge base
Learn from your editsN/A
Multi-client management
Custom themes✅ 4 built-in + DSLN/A

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

98.78%
按下载量换算4,436

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills