AgentStack
SKILL verified MIT Self-run

Xmind Parse

skill-y-mori29-xmind-claude-skills-xmind-parse · by y-mori29

既存のXMindファイル(.xmind)を解析して、階層構造をMarkdownまたはJSONとして取り出すスキル。「このxmindを要約して」「.xmindから内容を抽出」「マインドマップの中身を見せて」「xmindをMarkdownに」「.xmindを解析」「xmindをJSON化」「マインドマップから一覧を出して」などのリクエストで使う。クライアントから受領した.xmindファイルの内容把握、構造の比較、Claudeに読み込ませるための前処理に利用する。XMind 8(旧形式・content.xml ベース)と XMind 2020/Zen(新形式・content.json ベース)の両方に対応。

No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add skill-y-mori29-xmind-claude-skills-xmind-parse

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Xmind Parse? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

xmind-parse — マインドマップ解析スキル

何をするスキルか

.xmindファイル(XMind 8 旧形式 / XMind 2020+ 新形式の両方対応)を解析し、以下のフォーマットに変換する:

  • Markdown階層:見出し#と箇条書きで再現。Claudeが読みやすい
  • JSON構造:プログラム的に処理したいとき

使い方(Claude実行手順)

  1. 森さんから「この.xmindを解析して」「内容を要約して」と言われたら、対象ファイルパスを取得
  2. 以下を実行:

``bash cd "C:/Users/green/.claude/skills/xmind-parse" npm install --silent # 初回のみ # Markdown出力 node parse.js --in --format md [--out ] # JSON出力 node parse.js --in --format json [--out ] ``

  1. --out を省略すると stdout に出力。Claudeが直接読み取って要約できる

出力例

Markdown形式

# ルートタイトル

## 第1階層A
### 第2階層A-1
- 第3階層A-1-α
- 第3階層A-1-β
### 第2階層A-2

## 第1階層B

JSON形式

{
  "title": "ルートタイトル",
  "children": [
    {
      "title": "第1階層A",
      "children": [
        { "title": "第2階層A-1", "children": [...] }
      ]
    }
  ]
}

使い分け

| 用途 | フォーマット | |---|---| | 内容を読んで要約・整理 | md | | 別の.xmindに変換・再利用 | json → xmind-gen でMarkdownに整形して再生成 | | クライアント受領の.xmindを比較 | md で diff |

ファイル構成

  • parse.js — メイン解析スクリプト(Node.js)
  • package.json — 依存(adm-zip + fast-xml-parser)

制約

  • マーカー・ノート・関係線・スタイル情報は出力しない(タイトルと階層のみ)
  • 複数シートがある場合は最初のシートのみ解析

関連スキル

  • xmind-gen — Markdownから.xmindファイルを生成

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.