Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计异常

xmindxmind 命令行

Agent Skill

xmind 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

792

周安装

33

GitHub Stars

68

下载量

264
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:xmind(xmind 命令行)
来源仓库:https://github.com/apeyroux/mcp-xmind
仓库路径:skills/xmind
安装命令:
npx skills add https://github.com/apeyroux/mcp-xmind --skill xmind
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/apeyroux/mcp-xmind --skill xmind

简介

xmind 通过 JSON 结构生成 .xmind 思维导图文件,支持多级主题与备注嵌套。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中快速创建结构化知识图谱或项目规划图。
  • 需将 JSON 输入写入临时文件并通过 bundled script 转换,依赖 Node.js 环境执行。
  • 使用前应确认输出路径可写性及磁盘空间,避免因大文件导致进程阻塞。
  • 建议提前验证 JSON 格式合规性,防止因字段缺失或编码错误引发解析失败。

SKILL.md

XMind Mind Map Creator

Create .xmind files by building a JSON structure and piping it to the bundled script.

How to create an XMind file

  1. Build a JSON object with path and sheets fields (see format below)
  2. Write it to a temp file, then run:
node <skill-dir>/scripts/create_xmind.mjs < /tmp/xmind_input.json

Where <skill-dir> is the directory containing this SKILL.md file.

JSON Input Format

{
  "path": "/Users/user/Desktop/my_mindmap.xmind",
  "sheets": [
    {
      "title": "Sheet 1",
      "rootTopic": {
        "title": "Central Topic",
        "children": [
          {
            "title": "Branch 1",
            "notes": "Plain text note",
            "children": [
              { "title": "Sub-topic A" },
              { "title": "Sub-topic B" }
            ]
          }
        ]
      },
      "relationships": [
        { "sourceTitle": "Sub-topic A", "targetTitle": "Sub-topic B", "title": "related" }
      ]
    }
  ]
}

Topic Properties

Each topic object supports:

FieldTypeDescription
titlestring (required)Topic title
childrenarray of topicsChild topics
notesstring or {plain?, html?}Notes. HTML supports: <strong>, <u>, <ul>, <ol>, <li>, <br>. NOT <code>.
hrefstringExternal URL link
attachmentstringAbsolute path to a file to attach (embedded in the.xmind). Mutually exclusive with href.
linkToTopicstringTitle of another topic to link to (internal xmind:#id link, works across sheets)
labelsstring[]Tags/labels
markersstring[]Marker IDs: task-done, task-start, priority-1 to priority-9
calloutsstring[]Callout text bubbles
boundaries{range, title?}[]Visual grouping of children. Range: "(start,end)"
summaryTopics{range, title}[]Summary topics spanning children ranges
structureClassstringLayout (see below)
shapestringTopic shape (see shapes below)
position{x, y}Absolute position (only for detached topics in free-positioning sheets)

Topic shapes

  • org.xmind.topicShape.roundedRect — rounded rectangle (default)
  • org.xmind.topicShape.diamond — diamond (use for conditions/decisions)
  • org.xmind.topicShape.ellipserect — ellipse (use for start/end)
  • org.xmind.topicShape.rect — rectangle
  • org.xmind.topicShape.underline — underline only
  • org.xmind.topicShape.circle — circle
  • org.xmind.topicShape.parallelogram — parallelogram (use for I/O)

Layout structures

  • org.xmind.ui.map.clockwise — balanced map
  • org.xmind.ui.map.unbalanced — unbalanced map
  • org.xmind.ui.logic.right — logic chart (right)
  • org.xmind.ui.org-chart.down — org chart (down)
  • org.xmind.ui.tree.right — tree (right)
  • org.xmind.ui.fishbone.leftHeaded — fishbone
  • org.xmind.ui.timeline.horizontal — timeline

Task properties

Simple checkbox (no dates needed):

  • taskStatus: "todo" or "done"

Planned tasks (for Gantt/timeline view in XMind):

FieldTypeDescription
progressnumber 0.0-1.0Completion progress
prioritynumber 1-9Priority (1=highest)
startDateISO 8601 stringStart date, e.g. "2026-02-01T00:00:00Z"
dueDateISO 8601 stringDue date
durationDaysnumberDuration in days (preferred for relative planning)
dependenciesarray{targetTitle, type, lag?} — type: FS, FF, SS, SF

Two approaches for planned tasks:

  1. Relative (preferred): Use durationDays + dependencies. XMind auto-calculates dates.
  2. Absolute: Use startDate + dueDate for fixed dates.

When the user mentions "planning", "schedule", "timeline", "Gantt", "project", "phases", use RELATIVE planned tasks unless specific dates are given.

Sheet properties

FieldTypeDescription
titlestring (required)Sheet title
rootTopictopic (required)Root topic
relationshipsarray{sourceTitle, targetTitle, title?, shape?} — connects topics by title. shape: "org.xmind.relationshipShape.curved" (default) or "org.xmind.relationshipShape.straight"
detachedTopicsarray of topicsFree-floating topics (require freePositioning: true and position on each topic)
freePositioningbooleanEnable free topic positioning (for logic/flow diagrams)

Logic / Flow diagrams

For flowcharts, logic diagrams, or algorithmic diagrams, use free positioning with detached topics and straight relationships:

{
  "path": "/tmp/flowchart.xmind",
  "sheets": [{
    "title": "Algorithm",
    "freePositioning": true,
    "rootTopic": {
      "title": "START",
      "shape": "org.xmind.topicShape.ellipserect",
      "structureClass": "org.xmind.ui.map.clockwise"
    },
    "detachedTopics": [
      {"title": "IS X > 0?", "position": {"x": 0, "y": 130}, "shape": "org.xmind.topicShape.diamond"},
      {"title": "PRINT YES", "position": {"x": 200, "y": 130}},
      {"title": "PRINT NO", "position": {"x": -200, "y": 130}},
      {"title": "END", "position": {"x": 0, "y": 260}, "shape": "org.xmind.topicShape.ellipserect"}
    ],
    "relationships": [
      {"sourceTitle": "START", "targetTitle": "IS X > 0?", "shape": "org.xmind.relationshipShape.straight"},
      {"sourceTitle": "IS X > 0?", "targetTitle": "PRINT YES", "title": "YES", "shape": "org.xmind.relationshipShape.straight"},
      {"sourceTitle": "IS X > 0?", "targetTitle": "PRINT NO", "title": "NO", "shape": "org.xmind.relationshipShape.straight"},
      {"sourceTitle": "PRINT YES", "targetTitle": "END", "shape": "org.xmind.relationshipShape.straight"},
      {"sourceTitle": "PRINT NO", "targetTitle": "END", "shape": "org.xmind.relationshipShape.straight"}
    ]
  }]
}

Conventions: Use ellipse for start/end, diamond for conditions, rectangle (default) for actions, parallelogram for I/O. Use "org.xmind.relationshipShape.straight" for all connectors. Position topics on a grid (y increments of ~130px, x offsets of ~200px for branches).

When the user mentions "flowchart", "algorithm", "logic diagram", "organigramme de programmation", "diagramme logique", use this pattern.

Working with large files

When reading a PDF or other large file fails (e.g. "PDF too large"), extract text using CLI tools before building the mind map:

# Preferred: pdftotext (install: apt install poppler-utils)
pdftotext input.pdf /tmp/extracted.txt

# Fallback if pdftotext unavailable:
python3 -c "
import subprocess, pathlib, sys
p = sys.argv[1]
try:
    subprocess.run(['pdftotext', p, '/tmp/extracted.txt'], check=True)
except FileNotFoundError:
    subprocess.run(['pip', 'install', 'pymupdf'], check=True, capture_output=True)
    import importlib; fitz = importlib.import_module('fitz')
    doc = fitz.open(p)
    pathlib.Path('/tmp/extracted.txt').write_text('\n'.join(page.get_text() for page in doc))
" input.pdf

Then read /tmp/extracted.txt to build the mind map.

Important rules

  • The output path MUST end with .xmind
  • Always write the file where the user requests (e.g. ~/Downloads, ~/Desktop)
  • IDs are generated automatically
  • Topic references in relationships and dependencies are resolved by title
  • HTML notes: only <strong>, <u>, <ul>, <ol>, <li>, <br> are supported. <code> is NOT supported by XMind.
  • Internal links (linkToTopic) work across sheets
  • Notes should be substantial and detailed — don't just repeat the topic title. Use notes to add explanations, context, definitions, examples, key points, or reasoning. Aim for 2-5 sentences minimum per note. Use HTML notes with <strong>, <ul>/<li>, <br> for well-structured content. Most topics should have notes unless they are self-explanatory leaf nodes.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.99%
按下载量换算90

Claude

30.4%
按下载量换算80

Cursor

19.37%
按下载量换算51

Gemini CLI

8.07%
按下载量换算21

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/apeyroux/mcp-xmind --skill xmind 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills