xmind-generator
Generate XMind mind map files (.xmind) from Markdown outlines or plain text descriptions. Use when a user asks to create a mind map, visualize a structure, or export to XMind format. Supports both Markdown outline syntax (# headings, - bullets, indentation) and free-form text descriptions. Output is saved as a .xmind file in the workspace directory, openable directly in XMind app.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/geoion/xmind-generatorXMind Generator
Generate .xmind files from Markdown outlines or plain text using the XMind SDK.
Script
scripts/generate_xmind.js — main generator. Requires Node.js and the xmind npm package.
Installation
Install dependencies before first use:
cd <skill_dir>
npm install
Usage
# From Markdown outline file
node scripts/generate_xmind.js --input outline.md --output /path/to/output.xmind
# From inline text (use \n for newlines)
node scripts/generate_xmind.js --text "# Root\n- Branch 1\n - Leaf\n- Branch 2" --output output.xmind
# From stdin
echo "..." | node scripts/generate_xmind.js --output output.xmind
Always run from the skill directory:
cd <skill_dir>
Default output location: the OpenClaw workspace directory.
Input Format
Both formats are supported:
Markdown outline:
# Root Topic
- Main Branch 1
- Sub topic 1
- Sub topic 2
- Main Branch 2
- Sub topic 3
- Leaf node
Plain text / free-form description: When user provides a description instead of an outline, first convert it to Markdown outline structure, then pass to the script.
Workflow
- If user provides a Markdown outline → pass directly to script via
--textor--input - If user provides a plain text description → convert to Markdown outline first, then generate
- Output file goes to workspace directory unless user specifies otherwise
- Confirm the output path to the user after generation
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-geoion-xmind-generator": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
akshare-cn-market
中国A股行情与宏观经济数据工具,基于 AKShare 库。支持个股K线、大盘指数、财务摘要、GDP/CPI/PMI/M2货币供应、中美国债收益率等。
s1cli
Stage1st (S1) 论坛命令行工具,基于 s1cli Python 包。支持登录/登出、浏览版块和帖子、发帖/回帖、搜索帖子、每日签到、查看个人信息、配置管理。当用户询问「S1」「Stage1st」「一阶段论坛」的操作,或要求浏览/发帖/搜索/签到/回帖时使用此 skill。需要已安装 s1cli(pip install s1cli 或 pip install -e /path/to/s1cli)。