Skip to content

robertZaufall/mindm-skill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mindm-skill

Codex skills for MindManager automation using the mindm library.

Overview

This repository provides skills that enable LLM-powered tools (Claude Code, Codex, etc.) to interact with MindManager programmatically. Skills wrap the mindm CLI tools for mindmap operations and export functionality.

Available Skills

Skill Description
mindm-mindmap High-level mindmap operations: read maps, get selections, serialize to Mermaid, create maps from Mermaid
mindm-export Export mindmaps to multiple formats: Mermaid, Markmap, Markdown, JSON, YAML (HTML or data-only)

Features

mindm-mindmap

  • Retrieve current mindmap structure as JSON
  • Get selected topics from active document
  • Serialize maps to Mermaid (simplified or with full metadata)
  • Create new maps from Mermaid syntax (auto-detects format)
  • Round-trip conversion: MindManager → Mermaid → MindManager

mindm-export

  • Export to HTML viewers: Mermaid, Markmap, Markdown
  • Export to data formats: JSON, YAML, Mermaid, Markdown
  • Stream output to stdout or write to file
  • Open exported files automatically

Platform Support

Feature Windows macOS
Topics & subtopics Yes Yes
Notes Yes Yes
Relationships Yes Yes
Icons Yes No
Images Yes No
Tags Yes No
Links Yes No
RTF formatting Yes No

Requirements

  • Python 3.12+
  • MindManager (tested with 23)
  • mindm library

Quick Start

Install the mindm package:

pip install mindm

Or run without installing via uvx:

uvx --from mindm mindm-mindmap get-mindmap --mode content
uvx --from mindm mindm-export --type mermaid_html --open

Project Structure

mindm-skill/
├── .gitignore
├── AGENTS.md          # Build instructions for agents
├── LICENSE
├── Makefile
├── README.md
├── mindm/skills/      # Packaged skill bundles (generated)
│   ├── mindm-export.skill
│   └── mindm-mindmap.skill
└── skills/            # Source skill definitions
    ├── mindm-export/
    │   ├── SKILL.md
    │   └── references/
    │       └── cli.md
    └── mindm-mindmap/
        ├── SKILL.md
        └── references/
            ├── cli.md
            └── mermaid.md

Related Projects

  • mindm - Python library for MindManager automation
  • mindm-mcp - MCP server for MindManager (deprecated, use these skills instead)

License

MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published