Mindmap logo

Mindmap

OrganizationPopular
markdown-viewer
mindmap

Create hierarchical mind maps using PlantUML @startmindmap syntax. Best for brainstorming, topic decomposition, study notes, and decision trees with automatic radial layout, left/right branches, and per-node styling.

Overview

Publishermarkdown-viewer
Repositoryskills
Skill namemindmap
Stars
3.3K
Forks
190
Bundled files
7
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 7 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by markdown-viewer on GitHub. Read the source before you install it.

Installation

Install the Mindmap AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/markdown-viewer/skills.git /tmp/skills
mkdir -p .claude/skills
cp -r /tmp/skills/mindmap .claude/skills/mindmap
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Mindmap in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Mindmap on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Mindmap is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Mind Map Diagram Generator

Quick Start: Start with @startmindmap -> define root and branches with * or +/- markers -> optionally set branch side, direction, and styles -> wrap in ```plantuml fence.

⚠️ IMPORTANT: Always use ```plantuml or ```puml code fence. NEVER use ```text — it will NOT render as a diagram.

Critical Rules

  • Every diagram starts with @startmindmap and ends with @endmindmap
  • Each hierarchy level is represented by repeating markers:
    • * style: * (root), ** (level 1), *** (level 2)
    • +/- style: + grows left branch, - grows right branch
  • Keep one marker style consistent in the same local branch (do not randomly mix indentation styles)
  • Use left side to switch subsequent branches to the left side of the root
  • Use direction keywords when needed:
    • top to bottom direction
    • right to left direction
  • Multi-line node content must use block syntax:
    • **:Line 1\nLine 2;
  • For quick color coding, use inline node color:
    • *[#Orange] Root
    • **[#lightgreen] Child
  • For reusable themes, define <style> and apply stereotypes like <<green>>
  • Rich text/Creole and icon syntax are supported inside node text (see examples)

Node Syntax Cheat Sheet

PatternMeaningExample
* RootRoot node with star syntax* Product Strategy
** ChildFirst-level child** Goals
*** GrandchildDeeper hierarchy*** KPI
+ RootRoot node with +/- syntax+ Architecture
++ Left branchBranch expanding on one side++ Services
-- Right branchBranch expanding on opposite side-- Risks
***_ BoxlessBoxless/minimal child node***_ Notes
# RootAlternative root marker style# Topic
**:...;Multi-line block node**:Item A\nItem B;

Branch Side and Direction

ControlSyntaxUse Case
Left-side splitleft sideSplit map into left/right groups from root
Top-to-bottomtop to bottom directionTree-like vertical hierarchy
Right-to-leftright to left directionRTL reading flow or mirrored layouts

Styling Options

MethodSyntaxBest For
Inline node color**[#FFBBCC] IdeaFast per-node emphasis
Reusable class style<style> ... .green { ... } </style> + <<green>>Consistent visual themes
Depth-based style:depth(1) { ... }Global formatting by hierarchy depth
Node/arrow global stylenode { ... } / arrow { ... }Unified typography and connectors

Recommended Color Palettes

Pick a palette that matches the map's purpose. Use inline [#hex] for quick coloring or define <style> classes for reuse.

General-Purpose (Pastel)

RoleHexPreviewUsage
Root#2196F3🔵Central topic
Branch A#A5D6A7🟢Category / group 1
Branch B#90CAF9🔵Category / group 2
Branch C#CE93D8🟣Category / group 3
Branch D#FFE082🟡Category / group 4
Leaf#E0E0E0Detail nodes

Status / RAG

StatusHexUsage
Done / OK#C8E6C9Completed, healthy
In Progress#FFF9C4Active, warning
Blocked / Risk#FFCDD2Issue, danger
Not Started#E0E0E0Pending, neutral

Warm Corporate

RoleHex
Root#1565C0
Level 1#FFB74D
Level 2#4DB6AC
Level 3#E0E0E0

Cool Tech

RoleHex
Root#263238
Level 1#00BCD4
Level 2#80DEEA
Level 3#B2EBF2

Earth Tone

RoleHex
Root#5D4037
Level 1#A1887F
Level 2#C8E6C9
Level 3#FFF9C4

Tip: Avoid pure saturated colors (#FF0000, #00FF00) — they reduce readability. Prefer soft/muted tones for backgrounds and reserve bold colors for the root only.

Mind Map Patterns

PatternPurposeExample
Basic HierarchyTopic decomposition and study outlinesbasic-hierarchy.md
Bilateral LayoutPros/cons, options vs risks, two-side analysisbilateral-layout.md
Boxless BranchesLightweight secondary nodes and annotationsboxless-branches.md
Styled ThemeColor-coded branches and reusable classesstyled-theme.md
Direction ControlVertical or RTL reading directiondirection-control.md
Rich Text ContentDetailed notes with icons and formattingrich-text-content.md
Project PlanningWork breakdown and action mapproject-planning.md

Quick Example

plantuml
@startmindmap
* Product Launch
** Goals
*** Revenue
*** User Growth

left side
** Risks
*** Timeline Slip
*** Budget Overrun

right to left direction
** Channels
*** Content
*** Ads
@endmindmap

Common Pitfalls

IssueSolution
Diagram not renderedUse ```plantuml fence + @startmindmap ... @endmindmap
Branch depth looks wrongCheck marker count (*, **, ***) and indentation consistency
Multi-line text breaks parserUse : ... ; block syntax, ensure trailing ; exists
Colors not appliedVerify hex format (#RRGGBB) or stereotype class names
Layout direction unexpectedAdd explicit top to bottom direction or right to left direction

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Mindmap AI skill do?

Create hierarchical mind maps using PlantUML @startmindmap syntax. Best for brainstorming, topic decomposition, study notes, and decision trees with automatic radial layout, left/right branches, and per-node styling.

Why use Mindmap on TypingMind?

Because you install it once and use it with any model. Mindmap is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Mindmap in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/markdown-viewer/skills/tree/main/mindmap. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Mindmap?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Mindmap?

As many as you like. As long as a model supports skills, you can use Mindmap with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Mindmap AI skill free?

It is published on GitHub by markdown-viewer. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇