xmind-file
Original:🇺🇸 English
Translated
Create and edit local .xmind mind map files via the xmind CLI. Use for text-only mind maps; for illustrated maps with generated images, use xmind-illustrated-map instead.
10installs
Sourcexmindltd/xmind-cli
Added on
NPX Install
npx skill4agent add xmindltd/xmind-cli xmind-fileTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Xmind File
Setup
bash
which xmind || npm install -g @xmindltd/xmind-cliCreate
Step 1: Discover
bash
xmind skill listReview all available recipes, layout features, and editing helpers.
Step 2: Load Skills + Execute
Load a recipe and a feature strategy in one call:
bash
xmind skill show recipes/<name> features features/strategy/<name>Then follow the loaded instructions:
- Phase 1 — Content: Follow recipe rules to plan content.
- Phase 2 — Render: Follow features + strategy rules to produce markdown, select skeleton and color, execute CLI.
If a subtree needs a different strategy during Phase 2:
bash
xmind skill show features/strategy/<other>Edit
Quick Edit
bash
xmind read <file>
xmind add <file> --parent <title> --topic <text>
xmind update <file> --topic <old-title> --title <new-title>
xmind delete <file> --topic <title>
xmind theme <file> --skeleton <name> --color <name>
xmind marker <file> --topic <title> --marker <id>
xmind label <file> --topic <title> --labels "Label1,Label2"
xmind layout <file> --topic <title> --layout <name>
cat <<'BATCH_EOF' | xmind batch <file>
[{"op": "...", ...}]
BATCH_EOFGuided Edit
For complex edits (optimize, review, restructure, restyle), load the edit guide:
bash
xmind skill show editing/guideFollow the guide's analysis template, then apply changes via batch.
Manual Image Attach
If the user already has local image files, attach them directly to topics:
bash
xmind image <file> --topic <title> --input <path>
xmind image <file> --topic <title> --removeFor illustrated maps where the agent generates images, use xmind-illustrated-map instead.