一键导入
canvas-to-jpg
Export Obsidian Canvas (.canvas) files to JPG images using Playwright. Use when user asks to export, screenshot, or convert a canvas to an image.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Export Obsidian Canvas (.canvas) files to JPG images using Playwright. Use when user asks to export, screenshot, or convert a canvas to an image.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Interview-based vault context capture for cmds-vault. Personalizes BRAIN.md, fills 100 Themes stubs, and optionally fills the CMDS.md Vault Operator profile so AI assistants give context-aware answers from day one. Activate when the user says "온보딩해줘", "처음 시작할게", "cmds onboarding", "온보딩", "context onboarding", "내 컨텍스트로 채워줘", "fill my vault", "personalize my brain", "interview me", "어떻게 시작하지", or after a fresh clone before exploring slash commands. Complementary to gobi-onboarding (which focuses on Gobi Space publishing).
Help organize thoughts through question-centered dialogue. Acts as a questioning thinking partner rather than an answer-providing assistant. Use when user needs to clarify problems, explore decisions, brainstorm strategy, or reflect on their own thinking.
Generate or modify a Gobi Brain homepage (home.html) using one of 4 style templates (neon-terminal, minimal-editorial, magazine, brutalist) with an interview that customizes hero links, gobi.* features to include, accent color, and fonts. Use when asked to create a Brain homepage, redesign home.html, build a Gobi vault landing page, or apply a different style to an existing Brain page.
Convert DOCX files into markdown while preserving headings, lists, tables, metadata, and extracted images.
Convert Obsidian markdown documents (with Mermaid diagrams, tables, wiki links) to professional A4 PDF using Playwright. Use when user requests PDF export of markdown files.
Create and manage Obsidian Canvas files with automatic layout generation. Use when creating visual knowledge maps, weekly reading summaries, or project timelines.
基于 SOC 职业分类
| name | canvas-to-jpg |
| description | Export Obsidian Canvas (.canvas) files to JPG images using Playwright. Use when user asks to export, screenshot, or convert a canvas to an image. |
| allowed-tools | ["Read","Write","Bash","Glob"] |
| license | MIT |
Export Obsidian Canvas files to high-resolution JPG images via Playwright headless browser.
playwright package installedRead the .canvas file (JSON format) to get nodes and edges.
CRITICAL: Obsidian may strip nodes when a canvas is open. If the canvas is currently open in Obsidian, ask the user to close it first, or use the canvas data from memory/inline rather than reading the file.
Use the Python renderer below. Pass the canvas file path as argument.
python3 "90. Settings/91. Skills/canvas-to-jpg/render_canvas.py" "<input_canvas_path>" "<output_jpg_path>" [--light]
<output_jpg_path> is omitted, the JPG is saved alongside the canvas file with the same name.--light for a white background with pastel boxes — good for sharing or printing.open "<output_jpg_path>"
| Color ID | Name | Hex |
|---|---|---|
| 1 | Red | #fb464c |
| 2 | Orange | #e9973f |
| 3 | Yellow | #e0de71 |
| 4 | Green | #44cf6e |
| 5 | Purple | #a882ff |
| 6 | Cyan | #53dfdd |
--light — pastel boxes, dark text on white)| Color ID | Name | Box Hex |
|---|---|---|
| 1 | Red pastel | #fde8e9 |
| 2 | Orange pastel | #fde9d2 |
| 3 | Yellow pastel | #fdf6c2 |
| 4 | Green pastel | #dff0e3 |
| 5 | Purple pastel | #e9e0ff |
| 6 | Cyan pastel | #d8f1f0 |
# H1, ## H2 headings**bold** text- bullet lists> blockquote`code` inline[[wiki|alias]] links (rendered as styled text)| delimiterstype: "file") render as text with the file pathpip install playwright && playwright install chromium