# Export To Markmind

> Turn a topic, text, or file into a rendered vault-ready file. TRIGGER WHEN: the user asks for a MarkMind mind map, a mappa mentale for Obsidian, or an Obsidian-compatible concept map. DO NOT TRIGGER WHEN: the user wants a force-graph web mindmap (use learning:forcegraph-exporter).

- Skill: `acaprino/export-to-markmind` (Agent Skill)
- Install (CLI): `npx skillmds@latest add acaprino/export-to-markmind`
- Raw SKILL.md: https://api.skillmd.com/api/skills/acaprino/export-to-markmind/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: acaprino (https://skillmd.com/u/acaprino)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/acaprino/export-to-markmind

---


> `<plugin-root>` names the directory that holds this plugin's `.codex-plugin/plugin.json`. Resolve it once from where this file was loaded, then substitute it into every path below that starts with it.
> Arguments: `<topic | \"text to map\" | path/to/file.md>`. Wherever `<arguments>` appears below, substitute the text the user typed after the skill name.

<!-- Generated by the Daodan compiler for codex. Edit the kernel, never this file. -->

Generate a MarkMind mind map for: <arguments>

Execute immediately -- no plan mode. This command chains two skills:

1. **Generate mindmap outline** (skill: `learning:generate-mindmap`): brainstorm internally (do not show to user), identify the central theme (2-4 words), extract branches and sub-concepts scaled to complexity level, assign emoji and colors. Save the JSON outline to a temporary file.

2. **Render to MarkMind** (skill: `learning:markmind-exporter`): pipe the JSON outline to `<plugin-root>/skills/markmind-exporter/scripts/generate_markmind.py` with `--output` flag to produce the `.md` file.

3. **Present the `.md` file** to the user, ready to drop into their Obsidian vault with the MarkMind plugin.

See `learning:generate-mindmap` for content principles, emoji semantic code, and color palette.
See `learning:markmind-exporter` for the renderer script usage and MarkMind Rich format details.

