Agent Skill
2/7/2026markmap-render
Render markmap (.mm.md) files to HTML for committing. Finds all .mm.md files in the project and runs npx markmap to generate interactive HTML mind maps.
N
nandiraju
0GitHub Stars
2Views
npx skills add nandiraju/mindmaps
SKILL.md
| Name | markmap-render |
| Description | Render markmap (.mm.md) files to HTML for committing. Finds all .mm.md files in the project and runs npx markmap to generate interactive HTML mind maps. |
name: markmap-render description: Render markmap (.mm.md) files to HTML for committing. Finds all .mm.md files in the project and runs npx markmap to generate interactive HTML mind maps.
Markmap Render
Render all .mm.md files to HTML for version control.
When to Use
- After doc-writer creates
.mm.mdfiles - Before committing documentation updates
- When user asks to "render markmaps" or "generate markmap HTML"
Workflow
- Find all
*.mm.mdfiles in project (or specified path) - For each file: run
npx markmap filename.mm.md -o filename.html - Report what was rendered
Usage
Render all markmaps in project:
/markmap-render
Render in specific directory:
/markmap-render docs/
Commands
Find files:
find . -name "*.mm.md" -type f
Render single file:
npx markmap input.mm.md -o input.html
Render all files:
find . -name "*.mm.md" -exec sh -c 'npx markmap "$1" -o "${1%.mm.md}.html"' _ {} \;
Output
Report format:
Rendered markmaps:
- docs/architecture.mm.md → docs/architecture.html
- docs/platform.mm.md → docs/platform.html
Total: 2 files
Prerequisites
Markmap CLI must be available. Install if needed:
npm install -g markmap-cli
Or use npx (no install required):
npx markmap
Skills Info
Original Name:markmap-renderAuthor:nandiraju
Download