Claudian
Use md2wechat inside Obsidian with Claudian, including install order, PATH fixes, and first prompts.
Claudian
Claudian is the Obsidian path for md2wechat-skill.
The stable rule is simple:
- install the
md2wechatCLI - install the shared skill with
npx skills add - fix
PATHinside Claudian if the GUI cannot find the CLI
Step 1. Install the CLI
If you already have Node and npm, start here:
npm install -g @geekjourneyx/md2wechatIf you prefer Homebrew on macOS:
brew install geekjourneyx/tap/md2wechatOr:
go install github.com/geekjourneyx/md2wechat-skill/cmd/md2wechat@v2.0.7Fallback:
curl -fsSL https://github.com/geekjourneyx/md2wechat-skill/releases/download/v2.0.7/install.sh | bash
export PATH="$HOME/.local/bin:$PATH"Step 2. Install the skill
npx skills add https://github.com/geekjourneyx/md2wechat-skill --skill md2wechatThen verify:
md2wechat version --json
md2wechat capabilities --json
ls ~/.claude/skills/md2wechatStep 3. Use it in Obsidian
Back in Claudian, try either:
/md2wechat- a natural language request such as:
Please use md2wechat to convert the current Markdown note into WeChat HTML and show me a preview first.If Claudian still cannot find md2wechat
This is usually a GUI PATH problem.
Open:
SettingsEnvironmentCustom variables
Then add a PATH entry that includes your CLI directory, for example:
PATH=/Users/your-name/.local/bin:existing-pathNotes
- The skill format is compatible with Claude Code style skills.
npx skills adddoes not install the CLI runtime.- Discovery commands are still the safest first step.