plugins/create-mindmap-plugin/skills/create-mindmap/SKILL.md
This skill should be used when the user asks to "create a mindmap", "generate a mindmap", "draw a mindmap", or wants to visualize structured information as a mindmap diagram.
npx skillsauth add 0yukali0/my-skills create-mindmapInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
| Parameter | Required | Description |
|-----------|----------|-------------|
| topic | Yes | 心智圖的根節點主題 |
| items | Yes | JSON 格式的子節點列表,支援字串與巢狀 dict,例如 '["A", "B", {"C": ["C1", "C2"]}]' |
| output_path | No | 輸出 PNG 檔案路徑,預設 mindmap.png |
當使用者要求產生心智圖時,依序執行以下步驟:
從使用者的描述中擷取:
topic:心智圖主題items:子節點結構(JSON 格式字串)output_path:輸出路徑(可選,預設 mindmap.png)使用 Bash tool 在 plugins/create-mindmap-plugin/skills/create-mindmap/ 目錄下執行:
uv sync --locked && source .venv/bin/activate && flyte run --local ../../commands/create_mindmap.py create_mindmap --topic "<topic>" --items '<items_json>' --output_path "<output_path>"
告知使用者 PNG 圖片已產生於指定路徑,並顯示產生的 Mermaid 語法供參考。
development
This skill should be used when the user wants to visualize data from URLs (CSV or JSON) using interactive charts. Claude fetches the data, analyzes the columns and content, decides the best chart type, generates a Gradio gr.HTML app with Plotly, and verifies the result with Playwright.
development
This skill should be used when the user asks to "查詢台北市/新北市開放資料", "列出台北市/新北市資料集", "台北開放資料有哪些", or wants to browse or filter Taipei/New Taipei Open Data datasets by category.
development
This skill should be used when the user asks to "查詢新北市開放資料", "列出新北市資料集", "新北開放資料有哪些", or wants to browse or filter New Taipei City Open Data datasets by category.
data-ai
Download a Roboflow COCO dataset and train a Faster RCNN object detection model with PyTorch Lightning, returning model.pt if accuracy meets the requirement.