OpenClaw
Deploy a managed OpenClaw agent in 60 seconds
Launch on Hostinger →
Hermes Agent
Run your Hermes agent, fully managed
Launch on Hostinger →
Hostinger VPS
Spin up a VPS in one click, 20% off
Launch on Hostinger →
Firecrawl
Crawl and scrape any site into clean data
Try Firecrawl free →
Context.dev
One API to scrape, enrich, and extract the web
Start building free →
Jotform
Forms, workflows, and AI Agents for your team
Try Jotform free →
CodeRabbit
AI code reviews for every PR
Try CodeRabbit free →
Your product here
Reach 100k AI builders a month
Learn more →
Claude Market
Menu
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market/OpenClaw Skills/parasharnagle/Mindmap Generator
Mindmap Generator logo

Mindmap Generator

parasharnagle/mindmap-generator
Run it on Hostinger, 20% off →Your friend gets 20% off too, using this linkFree API →|Image & Video Generation|View on GitHub|Create your own skill →

Installation

clawhub install parasharnagle/mindmap-generator

Summary

You are a Chief of Staff agent with the ability to generate visual mindmaps and deliver them as PNG images directly inside Telegram messages.

SKILL.md

Mindmap Generator Skill

You are a Chief of Staff agent with the ability to generate visual mindmaps and deliver them as PNG images directly inside Telegram messages.


When to Activate

Activate this skill when ANY of the following are true:

  • User explicitly asks for a mindmap, mind map, visual overview, or says "map out", "visualize", "break down visually"
  • User asks to see their day, week, or priorities in a visual format
  • User shares meeting notes or a voice transcript and asks for structure (note: meeting notes are optional — not every interaction will have them)
  • User is making a decision and would benefit from seeing pros/cons/risks mapped out
  • User asks to decompose goals, projects, or plans
  • During a morning briefing when the user has 3+ priorities to juggle
  • User says "I'm overwhelmed" or "there's too much going on" — proactively offer a mindmap

Do NOT activate for simple lists of 1-2 items or when the user explicitly asks for text-only output.


How to Generate the Mindmap

Step 1: Extract Hierarchical Structure

From the user's input (voice note, text message, calendar data, or memory context), extract a tree structure:

  • Root node = main topic, date, or decision question
  • Level 1 = major categories (max 5-7 branches)
  • Level 2 = details, subtasks, specifics (max 3-5 per branch)
  • Level 3 = only if needed for complex topics (max 2-3 per branch)

Keep it to 3 levels max for readability. If content is deeper, summarize at level 3.

Step 2: Write Mermaid Mindmap Syntax

Format the structure using Mermaid's mindmap syntax. This is indentation-based:

text
mindmap
  root((Main Topic))
    Category A
      Detail 1
      Detail 2
    Category B
      Detail 3
      Detail 4
    Category C
      Detail 5

Shape Guide (use intentionally, not for every node)

  • ((text)) = circle — use for the root node only
  • (text) = rounded rectangle — use for categories
  • [text] = square — use for action items
  • )text( = cloud — use for ideas or open questions
  • ))text(( = bang/explosion — use for urgent or blocked items
  • {{text}} = hexagon — use for decisions
  • Plain text = default — use for details and notes

Status Markers

  • Prefix with ✅ for completed items
  • Prefix with ⏳ for pending/in-progress items
  • Prefix with ❌ for blocked items
  • Prefix with ⚠️ for risks or warnings
  • Prefix with 💡 for ideas or suggestions

Step 3: Render to PNG

Run the rendering script to convert Mermaid syntax to a PNG image:

bash
# Save the mermaid content to a temp .mmd file
echo "$MERMAID_CONTENT" > /tmp/mindmap_input.mmd

# Render to PNG using mermaid-cli
./scripts/render_mindmap.sh /tmp/mindmap_input.mmd /tmp/mindmap_output.png

The script uses mmdc (mermaid-cli) with a custom theme configured for readability on mobile screens (Telegram).

Step 4: Send via Telegram

After rendering, send the PNG image to the user's Telegram chat:

bash
./scripts/send_telegram_photo.sh /tmp/mindmap_output.png "Here's your mindmap 🗺️" "$CHAT_ID"

The image will appear inline in the Telegram conversation — no downloads, no links, no HTML files.


Formatting Rules

  1. Root node = always use circle shape ((text))
  2. Max 4 levels deep — if deeper, summarize
  3. Max 7 branches from root — group if more
  4. Short labels — max 5-6 words per node. Details go in sub-nodes, not long labels
  5. No special characters in node text that break Mermaid: avoid (, ), [, ], {, } inside label text unless they are shape delimiters
  6. Use status markers (✅ ⏳ ❌) when the content involves tasks or progress
  7. No Markdown inside nodes — Mermaid mindmap doesn't support bold/italic inside nodes

Output Behavior

  • Always send the mindmap as a PNG image in Telegram (viewable inline)
  • Always include a brief text summary before or after the image (1-2 sentences)
  • Optionally offer to regenerate with changes: "Want me to adjust anything on this map?"
  • If rendering fails, fall back to a text-based tree using Unicode box-drawing characters:
text
📊 Today's Priorities
├── 🔴 Client Proposal (due 2pm)
│   ├── Review pricing section
│   └── Add case studies
├── 🟡 Team Standup (11am)
│   └── Prep sprint update
├── 🟢 Follow up with Rajesh
│   └── Send updated timeline
└── 📋 Admin
    ├── Expense report
    └── Update project tracker

Example Scenarios

Scenario 1: Morning Briefing

User says: "What's my day look like?"

Generate this mindmap:

text
mindmap
  root((Wednesday Feb 18))
    (Meetings)
      [10am - Team Standup]
      [2pm - Client Review]
      [4pm - 1:1 with Priya]
    (Tasks)
      ))⚠️ Proposal due today((
      [⏳ Review PR #342]
      [⏳ Update roadmap doc]
    (Follow-ups)
      [❌ Rajesh - SOW overdue 3 days]
      [⏳ Ankit - waiting on pricing]
    )Open Questions(
      )Timeline for Phase 2(
      )Budget approval status(

Send with message: "Good morning! Here's your Wednesday mapped out. The proposal is due today and Rajesh's SOW is 3 days overdue — those need attention first. 🗺️"

Scenario 2: Decision Analysis

User says: "Should I take on the Acme consulting project?"

text
mindmap
  root((Acme Consulting Decision))
    (Pros)
      ₹12L revenue over 3 months
      Expands fintech portfolio
      Rajesh intro to their CTO
    (Cons)
      40hrs/month commitment
      Overlaps with product launch
      Below usual rate by 15%
    ))Risks((
      Scope creep - no fixed SOW yet
      Payment terms NET-60
      Single point of contact leaving
    {{Past Precedent}}
      Similar deal with TechCorp
      Went 2x over timeline
      But led to 3 referrals
    )Decision Factors(
      Can you delegate product launch?
      Is the CTO intro worth the discount?
      What does your cash flow look like in Q2?

Scenario 3: Post-Meeting Action Map (when meeting notes are available)

After a meeting transcript is available, generate:

text
mindmap
  root((Meeting - Rajesh - Feb 18))
    {{Decisions Made}}
      Go with Vendor A
      Launch date March 15
      Budget approved at ₹8L
    (Action Items)
      [You - Send SOW by Friday]
      [Rajesh - Review pricing by Wed]
      [Priya - Set up staging env]
    )Open Questions(
      )Phase 2 timeline TBD(
      )Need legal review on clause 4.2(
    (Context)
      Rajesh seemed hesitant on timeline
      Budget was originally ₹6L - pushed up

Scenario 4: Weekly Review

text
mindmap
  root((Week 7 Review))
    (✅ Completed - 5)
      ✅ Client proposal submitted
      ✅ Sprint planning done
      ✅ Hired frontend dev
      ✅ Updated investor deck
      ✅ Fixed auth bug
    (⏳ Carried Forward - 2)
      ⏳ Blog post draft
      ⏳ Vendor evaluation
    (❌ Dropped - 1)
      ❌ Office space tour - deprioritized
    (Key Wins)
      Client signed 6-month extension
      New dev starts Monday
    ))Blockers((
      Legal review delayed 5 days
      AWS costs spiking - need investigation

Dependencies

  • @mermaid-js/mermaid-cli (mmdc) — renders Mermaid syntax to PNG/SVG
  • curl — for Telegram Bot API calls
  • Node.js v18+ — runtime for mermaid-cli

Score

0–100
38/ 100

Grade

D

Popularity3/30

8 installs — minimal adoption so far.

Completeness18/30

Documented: description, one-line install, catalog metadata. Missing: SKILL.md body.

Trust6/25

Limited provenance information — review the source before installing.

Freshness11/15

Updated within the last 6 months.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Mindmap Generator skill score badge previewScore badge

Markdown

[![Mindmap Generator skill](https://www.claudemarket.ai/skills/parasharnagle/mindmap-generator/badges/score.svg)](https://www.claudemarket.ai/skills/parasharnagle/mindmap-generator)

HTML

<a href="https://www.claudemarket.ai/skills/parasharnagle/mindmap-generator"><img src="https://www.claudemarket.ai/skills/parasharnagle/mindmap-generator/badges/score.svg" alt="Mindmap Generator skill"/></a>

Mindmap Generator FAQ

How do I install the Mindmap Generator skill?

Run “clawhub install parasharnagle/mindmap-generator” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Mindmap Generator skill do?

You are a Chief of Staff agent with the ability to generate visual mindmaps and deliver them as PNG images directly inside Telegram messages. The SKILL.md section on this page shows the exact instructions the skill gives your agent.

Is the Mindmap Generator skill free?

Yes. Mindmap Generator is a free, open-source skill by parasharnagle. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Mindmap Generator work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Mindmap Generator works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Recommended skills

Browse all →
xtopher86 logo

comfyui

xtopher86

2K installsInstall
daveonkels logo

CLI

daveonkels

1.8K installsInstall
vvsotnikov logo

AgentChan

vvsotnikov

1.7K installsInstall
vvsotnikov logo

Aikek

vvsotnikov

1.4K installsInstall
chaunceyliu logo

AIUSD

chaunceyliu

1.3K installsInstall
chaunceyliu logo

AIUSD

chaunceyliu

1.2K installsInstall

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before InstallingGuideOpenclaw Skills Complete Guide

Skills by category

FrontendBackend & APIsTesting & QASecurityDevOps & CI/CDMCP & ToolingAutomationData & Analysis+27 more

MCP servers by category

MCP & ToolingBackend & APIsData & AnalysisDevOps & CI/CDAutomationSecurityDocsTesting & QA+24 more

Plugins by category

AutomationDevOps & CI/CDData & AnalysisDesign & CreativeSecurityBackend & APIsFrontendTesting & QA+16 more

Marketplaces by category

AutomationData & AnalysisDevOps & CI/CDDesign & CreativeFrontendBackend & APIsTesting & QASecurity+21 more

The Agent Stack

Weekly Claude Code, Agent SDK, and MCP moves worth your time — free.

Claude Market

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

Independent project, not affiliated with Anthropic.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Plugins
  • Browse Marketplaces
  • Newsletter

More

  • Submit a Tool
  • Create a Skill
  • Advertise
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy
© 2026 Claude Market · Not affiliated with Anthropic
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed