Syb-mindmap is a lightweight tool that generates mindmap diagrams directly from YAML or JSON files.
It allows developers and teams to define structured maps as code, making diagrams versionable, automatisable, and easily maintainable.
- Open the Extensions view (
Ctrl+Shift+XorCmd+Shift+Xon macOS). - Search for "Syb Mindmap" in the Extensions Marketplace.
- Click on the "Install" button.
code --install-extension sybernatus.syb-mindmap --force- Open the command palette (Ctrl + Shift + P) and type "Syb Mindmap" to generate a mindmap from the current file.
- Open the Plugins view.
- Search for "Syb Mindmap" in the JetBrains Marketplace.
- Click on the "Install" button.
- After installation, the panel will be available in the right sidebar.
$schema: https://raw.githubusercontent.com/sybernatus/syb-mindmap/main/assets/schemas/mindmap.schema.yaml
data:
text: My Mindmap
children:
- text: My first element
children:
- text: View my topic{
"$schema": "https://raw.githubusercontent.com/sybernatus/syb-mindmap/main/assets/schemas/mindmap.schema.yaml",
"data": {
"text": "My Mindmap",
"children": [
{
"text": "My first element",
"children": [
{
"text": "View my topic"
}
]
}
]
}
}This project is licensed under the Apache License Version 2.0. See LICENSE for details.
© 2025 Sybernatus. All rights reserved.