Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

mindmapmindmap 搜索

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

18,863

周安装

802

GitHub Stars

2,291

下载量

6,608
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mindmap(mindmap 搜索)
来源仓库:https://github.com/markdown-viewer/skills
仓库路径:skills/mindmap
安装命令:
npx skills add https://github.com/markdown-viewer/skills --skill mindmap
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/markdown-viewer/skills --skill mindmap

简介

将线性文本重构为树状思维导图结构。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 自动识别关键词作为分支节点并分配权重标识。
  • 支持导出 XMind 等格式供团队协作使用。
  • 创意发散阶段建议人工干预调整逻辑层级关系。
  • mindmap 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Mind Map Diagram Generator

Quick Start: Start with @startmindmap -> define root and branches with * or +/- markers -> optionally set branch side, direction, and styles -> wrap in ``` `plantuml ``` fence.

⚠️ IMPORTANT: Always use ``` `plantuml `` or `` `puml `` code fence. NEVER use `` `text ``` — it will NOT render as a diagram.

Critical Rules

  • Every diagram starts with @startmindmap and ends with @endmindmap
  • Each hierarchy level is represented by repeating markers:

- * style: * (root), ** (level 1), *** (level 2) - +/- style: + grows left branch, - grows right branch

  • Keep one marker style consistent in the same local branch (do not randomly mix indentation styles)
  • Use left side to switch subsequent branches to the left side of the root
  • Use direction keywords when needed:

- top to bottom direction - right to left direction

  • Multi-line node content must use block syntax:

- **:Line 1\nLine 2;

  • For quick color coding, use inline node color:

- *[#Orange] Root - **[#lightgreen] Child

  • For reusable themes, define <style> and apply stereotypes like <<green>>
  • Rich text/Creole and icon syntax are supported inside node text (see examples)

Node Syntax Cheat Sheet

PatternMeaningExample
* RootRoot node with star syntax* Product Strategy
** ChildFirst-level child** Goals
*** GrandchildDeeper hierarchy*** KPI
+ RootRoot node with +/- syntax+ Architecture
++ Left branchBranch expanding on one side++ Services
-- Right branchBranch expanding on opposite side-- Risks
***_ BoxlessBoxless/minimal child node***_ Notes
# RootAlternative root marker style# Topic
**:...;Multi-line block node**:Item A\nItem B;

Branch Side and Direction

ControlSyntaxUse Case
Left-side splitleft sideSplit map into left/right groups from root
Top-to-bottomtop to bottom directionTree-like vertical hierarchy
Right-to-leftright to left directionRTL reading flow or mirrored layouts

Styling Options

MethodSyntaxBest For
Inline node color**[#FFBBCC] IdeaFast per-node emphasis
Reusable class style<style>....green {...} </style> + <<green>>Consistent visual themes
Depth-based style:depth(1) {...}Global formatting by hierarchy depth
Node/arrow global stylenode {...} / arrow {...}Unified typography and connectors

Recommended Color Palettes

Pick a palette that matches the map's purpose. Use inline [#hex] for quick coloring or define <style> classes for reuse.

General-Purpose (Pastel)

RoleHexPreviewUsage
Root#2196F3🔵Central topic
Branch A#A5D6A7🟢Category / group 1
Branch B#90CAF9🔵Category / group 2
Branch C#CE93D8🟣Category / group 3
Branch D#FFE082🟡Category / group 4
Leaf#E0E0E0Detail nodes

Status / RAG

StatusHexUsage
Done / OK#C8E6C9Completed, healthy
In Progress#FFF9C4Active, warning
Blocked / Risk#FFCDD2Issue, danger
Not Started#E0E0E0Pending, neutral

Warm Corporate

RoleHex
Root#1565C0
Level 1#FFB74D
Level 2#4DB6AC
Level 3#E0E0E0

Cool Tech

RoleHex
Root#263238
Level 1#00BCD4
Level 2#80DEEA
Level 3#B2EBF2

Earth Tone

RoleHex
Root#5D4037
Level 1#A1887F
Level 2#C8E6C9
Level 3#FFF9C4
Tip: Avoid pure saturated colors (#FF0000, #00FF00) — they reduce readability. Prefer soft/muted tones for backgrounds and reserve bold colors for the root only.

Mind Map Patterns

PatternPurposeExample
Basic HierarchyTopic decomposition and study outlinesbasic-hierarchy.md
Bilateral LayoutPros/cons, options vs risks, two-side analysisbilateral-layout.md
Boxless BranchesLightweight secondary nodes and annotationsboxless-branches.md
Styled ThemeColor-coded branches and reusable classesstyled-theme.md
Direction ControlVertical or RTL reading directiondirection-control.md
Rich Text ContentDetailed notes with icons and formattingrich-text-content.md
Project PlanningWork breakdown and action mapproject-planning.md

Quick Example

@startmindmap
* Product Launch
** Goals
*** Revenue
*** User Growth

left side
** Risks
*** Timeline Slip
*** Budget Overrun

right to left direction
** Channels
*** Content
*** Ads
@endmindmap

Common Pitfalls

IssueSolution
Diagram not renderedUse ``` `plantuml `` fence + @startmindmap... @endmindmap`
Branch depth looks wrongCheck marker count (*, **, ***) and indentation consistency
Multi-line text breaks parserUse :...; block syntax, ensure trailing ; exists
Colors not appliedVerify hex format (#RRGGBB) or stereotype class names
Layout direction unexpectedAdd explicit top to bottom direction or right to left direction

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.31%
按下载量换算2,267

Claude

30.29%
按下载量换算2,002

Cursor

17.66%
按下载量换算1,167

Gemini CLI

9.16%
按下载量换算605

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills