直接從 Claude Code 渲染心智圖。Claude 會編寫大綱,以原始模式呼叫 API,並將精美的 PNG 檔案置於您的提示旁 — 無需手動使用 curl,也無需將令牌貼入聊天。
該技能包含一個 SKILL.md 檔案和一個位於 ~/.claude/skills/mindmap/ 下的微型 shell 腳本。當您要求 Claude 視覺化某內容時,它會選擇一個主題,編寫結構化的 Markdown,並將其以原始模式傳送至公開的 /mindmaps/image 端點。回應是一個寫入您工作目錄的 PNG 檔案。
Claude自行撰寫大綱 — 標題與要點 — 完全符合使用者的要求。
無伺服器端AI。渲染器直接讀取markdown,因此圖像生成更快、更便宜且具有確定性。
API令牌從環境變數讀取 — 從未貼入聊天,也從未記錄於歷史中。
商務、邏輯、時間軸或自由格式 — Claude會將內容對應到此技能內建的其中一種預設樣式。
一次性設定:將兩個檔案下載至 ~/.claude/skills/mindmap/ 並匯出您的 API 令牌。
mkdir -p ~/.claude/skills/mindmap/scripts curl -fsSL https://static.clipmind.tech/skills/mindmap/SKILL.md \ -o ~/.claude/skills/mindmap/SKILL.md curl -fsSL https://static.clipmind.tech/skills/mindmap/scripts/render.sh \ -o ~/.claude/skills/mindmap/scripts/render.sh chmod +x ~/.claude/skills/mindmap/scripts/render.sh export CLIPMIND_API_TOKEN='<your api token>' export CLIPMIND_API_URL='https://api.clipmind.tech/public/mindmaps/image'
任何 Claude Code 會話皆可觸發此技能。範例提示:
> turn these notes into a mindmap: > - launch plan > - weeks 1-2: research > - weeks 3-4: design > - week 5: ship > visualize the decision tree for feature flagging > 把这些要点画成脑图,主题用 dark-ocean
從工作區取得您的 API 令牌並安裝技能。需要直接使用原始 API 嗎?REST 參考文件涵蓋了所有參數。