md2wechat Agent API markmd2wechat Agent API
  • Docs
  • Themes
  • Editor
  • Blog
  • Pricing
  • Examples
  • Skills
  • Contact
How to Install md2wechat-skill in OpenClaw
2026/03/12

How to Install md2wechat-skill in OpenClaw

A setup guide for installing md2wechat-skill in OpenClaw, including script, manual, and configuration steps.

"How do I install the md2wechat skill in OpenClaw?"

This question is easier if you split it into two parts:

  1. OpenClaw itself must already be installed
  2. then md2wechat must be added as a skill

If you skip the first part, the second part gets explained in the wrong context.

Step 1: make sure OpenClaw is already installed

According to the OpenClaw install docs, the recommended path is the install script:

curl -fsSL https://openclaw.ai/install.sh | bash

That script handles installation and onboarding. If OpenClaw is not present yet, start there first.

Reference:

  • OpenClaw Install

Step 2: understand where OpenClaw expects skills

Based on the OpenClaw skills docs, skills commonly come from three sources:

  • built-in skills
  • local or hosted skills under ~/.openclaw/skills
  • a skills/ directory inside the current workspace

That means a skill like md2wechat can be installed globally or only for a specific workspace.

Reference:

  • OpenClaw Skills

Available installation paths for md2wechat

Based on the public md2wechat-skill project documentation, there are at least three realistic installation paths.

1. Install through ClawHub

If the skill is available through ClawHub, the common OpenClaw installation pattern is:

clawhub install <skill-slug>

This is the cleanest path when the skill is already published in the registry.

2. Use the project's install script

The md2wechat-skill project provides an OpenClaw install script:

curl -fsSL https://raw.githubusercontent.com/geekjourneyx/md2wechat-skill/main/scripts/install-openclaw.sh | bash

This path is useful when:

  • you want the fastest setup
  • you do not want to inspect ClawHub first
  • you want the project to place files in the expected path for you

3. Install it manually

If you want full control, a manual path is also straightforward:

git clone https://github.com/geekjourneyx/md2wechat-skill.git
mkdir -p ~/.openclaw/skills
cp -r md2wechat-skill/skills/md2wechat ~/.openclaw/skills/

This path fits situations where:

  • you want to inspect the skill structure
  • you expect to modify SKILL.md or scripts
  • you want to place it into a specific workspace layout

Installation is not the same as configuration

This is the part people skip too often.

OpenClaw configuration is stored in:

~/.openclaw/openclaw.json

The public md2wechat-skill docs also show configuration under skills.entries.md2wechat.

So after installation, you still need the right credentials in place:

  • an API key
  • WeChat credentials if you plan to use advanced publish features

Installing the skill only makes OpenClaw recognize it. It does not make the workflow usable yet.

Why installation and configuration should stay separate

If the skill appears in OpenClaw, that only proves the runtime can see it.

It does not prove:

  • the API key is valid
  • WeChat credentials are present
  • draft-related functions can run successfully

The correct mental split is:

  • installation makes the skill available
  • configuration makes the skill operational

How this differs from Claude Code

The difference between OpenClaw and Claude Code is mostly about how they install and register capabilities:

  • Claude Code leans on plugin-market commands
  • OpenClaw leans on ClawHub, local skill directories, and openclaw.json

That is why the same capability needs separate install instructions.

Closing thought

The realistic OpenClaw path is:

  1. install OpenClaw
  2. add the md2wechat skill through ClawHub, the install script, or manual placement
  3. finish the credential configuration in openclaw.json

That sequence keeps "installed" and "usable" from being confused with each other.

All Posts

Author

avatar for geekjourney
geekjourney

Categories

  • Integration
Step 1: make sure OpenClaw is already installedStep 2: understand where OpenClaw expects skillsAvailable installation paths for md2wechat1. Install through ClawHub2. Use the project's install script3. Install it manuallyInstallation is not the same as configurationWhy installation and configuration should stay separateHow this differs from Claude CodeClosing thought

More Posts

What Is the Newspic Draft API?
API

What Is the Newspic Draft API?

A guide to the newspic draft API, including request shape, fit, and how it differs from a standard article draft.

avatar for geekjourney
geekjourney
2026/03/12
How to Integrate WeChat `draft_add`
API

How to Integrate WeChat `draft_add`

A guide to WeChat `draft_add`, covering server-side constraints, article types, media rules, and common errors.

avatar for geekjourney
geekjourney
2026/03/14
Markdown to WeChat HTML FAQ
API

Markdown to WeChat HTML FAQ

Answers to common questions about themes, images, styles, drafts, and the next steps after Markdown conversion.

avatar for geekjourney
geekjourney
2026/03/12

Newsletter

Join the community

Subscribe to our newsletter for the latest news and updates

md2wechat Agent API markmd2wechat Agent API

The official md2wechat API, docs, CLI, and skill entry points for Markdown to WeChat publishing workflows.

GitHubX (Twitter)
Product
  • Quickstart
  • Themes
  • Pricing
  • Contact
Docs
  • Auth
  • OpenAPI
  • llms.txt
Ecosystem
  • Examples
  • Skills
  • md2wechat-lite
© 2026 md2wechat Agent API. All Rights Reserved.