XMind Integrator
This skill allows you to transform your local Markdown project plans and Mermaid diagrams into XMind files for high-level visual presentation.
Workflows
1. Export Plan to XMind
If the user asks to "Export my plan to XMind" or "Generate an XMind map for this project":
- Locate the primary Markdown file (e.g.,
plan.md). - Run the generation script:
node xmind-integrator/scripts/generate_xmind.cjs <path_to_md_file> - The script will automatically detect Mermaid mindmap blocks OR standard Markdown headers/lists to build the hierarchy.
Technical Details
- Library: Uses the official
xmindNode.js SDK. - Parsing:
- Prioritizes
mermaid mindmapblocks for structure. - Falls back to Markdown headers (
#,##) and lists (-,*) if no Mermaid block is found.
- Prioritizes
- Output: Generates a
.xmindfile in the same directory as the source Markdown file.
Requirements
pip install xmind