Custom themes for MindNode plus an Agent Skill that teaches AI assistants (Claude, Copilot, Codex, Cursor) how to create MindNode themes from any color palette.
Double-click any .mindnodedynamictheme file to install it in MindNode.
The mindnode-theme skill teaches AI agents how to create MindNode themes. Install it in your AI tool of choice:
Using skills.sh CLI (easiest):
npx skills add mindnode-themeManual installation: Copy the skills/mindnode-theme folder to your AI tool's skills directory (see Installation Paths below).
| Theme | Description |
|---|---|
Gruvbox.mindnodedynamictheme |
Gruvbox color scheme with light/dark mode, per-level styling, and 7 accent colors |
mindmanager.mindnodedynamictheme |
MindManager-inspired style |
The mindnode-theme skill enables any compatible AI assistant to:
- Convert color palettes (hex, RGB) to MindNode format
- Create dynamic themes with automatic light/dark mode switching
- Configure per-level styling (boxes vs text-only nodes)
- Set up branch color rainbows
- Package themes as
.mindnodedynamicthemefiles
Once installed, try asking your AI:
- "Create a MindNode theme using the Dracula color palette"
- "Make a Nord-themed mind map style with boxes only for the first two levels"
- "Convert my brand colors to a MindNode theme"
| AI Tool | Skills Location |
|---|---|
| Claude Code | ~/.claude/skills/ (global) or .claude/skills/ (project) |
| Claude.ai | Upload via skill icon in chat, or use marketplace |
| VS Code / Copilot | .github/skills/ or .claude/skills/ in workspace |
| OpenAI Codex | ~/.codex/skills/ (user) or .codex/skills/ (repo) |
| Cursor | .cursor/skills/ or .claude/skills/ |
# Clone this repo
git clone https://github.com/jguice/mindnode-theme-agent-skill.git
cd mindnode-theme-agent-skill
# Copy to your AI tool's skills directory:
# Claude Code (global)
cp -r skills/mindnode-theme ~/.claude/skills/
# Claude Code (project-local)
cp -r skills/mindnode-theme .claude/skills/
# VS Code / GitHub Copilot
cp -r skills/mindnode-theme .github/skills/
# OpenAI Codex
cp -r skills/mindnode-theme ~/.codex/skills/
# Cursor
cp -r skills/mindnode-theme .cursor/skills/skills/mindnode-theme/
├── SKILL.md # Main skill instructions
├── color-palettes.md # Pre-converted popular palettes
└── examples/
├── dynamic-theme-template.json
├── gruvbox-dynamic.json
└── gruvbox-dark-contents.xml
- Agent Skills Explained - Overview of the Agent Skills standard
- Claude Code Skills Documentation
- VS Code Agent Skills
- awesome-agent-skills - Curated list of skills for AI agents
- MindNode Theme Guide - Official MindNode documentation
MIT