Install
$ agentstack add skill-y-mori29-xmind-claude-skills-xmind-parse ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
About
xmind-parse — マインドマップ解析スキル
何をするスキルか
.xmindファイル(XMind 8 旧形式 / XMind 2020+ 新形式の両方対応)を解析し、以下のフォーマットに変換する:
- Markdown階層:見出し
#と箇条書きで再現。Claudeが読みやすい - JSON構造:プログラム的に処理したいとき
使い方(Claude実行手順)
- 森さんから「この.xmindを解析して」「内容を要約して」と言われたら、対象ファイルパスを取得
- 以下を実行:
``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 ] ``
--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.
- Author: y-mori29
- Source: y-mori29/xmind-claude-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.