Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

xmind-skillx 思维技能

Agent Skill

xmind-skill 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

22,512

周安装

938

GitHub Stars

公开资料未说明

下载量

7,504
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install xmind-skill

简介

通过已发布的 xmind-generator-mcp MCP 服务器 (npm) 生成并读取 XMind (.xmind) 文件,并具有聊天优先的 UX。

SKILL.md

name
xmind
description
Generate and read XMind (.xmind) files via the published xmind-generator-mcp MCP server (npm), with a chat-first UX.
metadata
openclaw
emoji
🧠
requires
bins
["mcporter", "npx"]
install
kind
note
label
Uses npx xmind-generator-mcp@0.1.2 (no separate install needed)

xmind 🧠

Generate and read XMind .xmind files using the published MCP server xmind-generator-mcp (npm).

This skill is chat-first:

  • “Generate an XMind for this (optionally: save to …)” → generates a .xmind and sends it back.
  • “Read this XMind and tell me what it’s about” → explains the map first, then offers a Markdown export.

When to use

  • User wants: “generate an XMind file from this outline / plan / PRD / test plan”.
  • Output should be a real .xmind file that opens in XMind.

Input format (for generation)

The MCP tool generate-mind-map accepts Schema A JSON:

{
  "title": "Root topic",
  "filename": "mindmap-name-no-date",
  "topics": [
    {
      "title": "Topic title (keep core info in the title)",
      "note": "Optional: use sparingly; only when the title would be too long",
      "labels": ["optional"],
      "markers": ["Arrow.refresh"],
      "children": [{"title": "Child topic"}]
    }
  ]
}

How the assistant should call the MCP (stdio via mcporter)

Generate XMind

Use npx xmind-generator-mcp@0.1.2 as the MCP server command:

mcporter call --stdio "npx -y xmind-generator-mcp@0.1.2" generate-mind-map --args '{...}'

Read XMind (Markdown export)

mcporter call --stdio "npx -y xmind-generator-mcp@0.1.2" read-mind-map --args '{"inputPath":"/path/to/file.xmind","style":"A"}'

Read behavior in chat (UX requirement)

When a user sends an .xmind file and asks to “read/understand” it: 1) First, explain in detail what the mind map is about (summary + structure + key points + actionable items + gaps). 2) Only after that, ask whether the user wants an export. 3) If the user wants an export, default to Markdown.

  • generate --output can be a directory (recommended) or a full .xmind path.
  • If outputPath is omitted, the MCP server defaults to its configured outputPath environment variable (see below).

Chat-first workflow (what the assistant should do)

Trigger phrases:

  • “Generate an XMind for this” / “Make an XMind from this”
  • “Read this XMind” / “Summarize this XMind”

Language rule (important):

  • If the user does not explicitly specify the language of the generated mind map, match the language of the user’s request.

- Example: user asks in Chinese → generate Chinese topic titles. - Example: user asks in English → generate English topic titles.

  • Only switch languages if the user explicitly asks (e.g. “generate in English”).

Filename rule (important):

  • If the user provides a filename/path, use it.
  • If the user does not provide a filename:

- Default filename should follow the user’s request language. - For Chinese: use short hyphen style, no date (e.g. one-day-trip-detailed in Chinese characters, but keep it short). - For English: use a short slug, no date (e.g. hong-kong-1-day-itinerary).

  • Always sanitize invalid filename characters: \\ / : * ? \" < > | → replace with -.

Steps: 1) Parse whether the user specified a save location/path. - If specified, use that. - If not specified, default to ~/Desktop. 2) Determine output language: - If user specified language → follow it. - Else → match the user’s message language. 3) Convert the user’s content into Schema A JSON (in the chosen language). - Keep it reasonably sized (avoid thousands of nodes in one go). - Use XMind enrichment elements when helpful (but keep titles informative): - note: use sparingly. Only put content in note when it would make the topic title too long or noisy. If the content is core to the plan, keep it in the title instead of hiding it in note. - labels: add lightweight categorization (e.g. must-do/optional/rainy-day/budget/family-friendly). - relationships: sparingly (mode A) — only for truly cross-branch links that add clarity. 4) Write the JSON to a temp file, e.g. /tmp/xmind-<ts>.json. 5) Call the MCP tool generate-mind-map via mcporter stdio (npx xmind-generator-mcp@0.1.2). Capture/compute the output file path. 6) Send the generated .xmind back in chat as an attachment. 7) Optionally also tell the user where it was saved on disk.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

89.44%
按下载量换算6,712

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills