一键导入
excalidraw
Generate Excalidraw diagrams from JSON. Pipeline, mindmap, flowchart. Use when: draw diagram, visualize, architecture schema, mindmap.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate Excalidraw diagrams from JSON. Pipeline, mindmap, flowchart. Use when: draw diagram, visualize, architecture schema, mindmap.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Fetch a SPECIFIC Twitter/X tweet, article, thread, profile, or timeline by URL/id via the SocialData API. Use when: a Twitter link, read a known tweet, check a profile, read a thread. For SEARCH / discovery / 'what's trending in a niche', use the `x-research` skill (Grok Live Search) instead — this skill is fetch-only.
Agentic skills framework (pcvelz fork): TDD, debugging, planning, code-review, git-worktrees, parallel agents. 15 skills with .tasks.json persistence between sessions.
Create charts, tables, and data visualizations via Datawrapper API
Web research via Perplexity Sonar API -- search, fact-check, analyze trends
Local kanban board for AI agents. Agents create/update/complete tasks, track status visually. Use when: manage tasks, kanban, create task, update status, task board.
Transcribe voice messages (.ogg) via Groq Whisper API. When you see <media:audio> in a message, extract the file path and transcribe it using the included script.
| name | excalidraw |
| description | Generate Excalidraw diagrams from JSON. Pipeline, mindmap, flowchart. Use when: draw diagram, visualize, architecture schema, mindmap. |
| user-invocable | true |
| argument-hint | [diagram-type] [description] |
Generates valid .excalidraw JSON files from simple JSON input.
| Type | Layout | Use Case |
|---|---|---|
pipeline | Vertical stages with blocks | Workflows, CI/CD, data pipelines |
mindmap | Radial from center | Brainstorming, topic exploration |
flowchart | Custom node positions | Architecture, decision trees |
# From JSON file
python3 $CLAUDE_SKILL_DIR/scripts/excalidraw_gen.py --input schema.json --output diagram.excalidraw
# From stdin
echo '{"type":"mindmap","center":"AI Agents","nodes":["Memory","Skills","Tools"]}' | \
python3 $CLAUDE_SKILL_DIR/scripts/excalidraw_gen.py --output diagram.excalidraw
{
"type": "pipeline",
"title": "Data Pipeline",
"stages": [
{"name": "Input", "type": "input", "blocks": ["API", "Webhook"]},
{"name": "Process", "type": "analysis", "blocks": ["Transform", "Validate"]},
{"name": "Output", "type": "final", "blocks": ["Database", "Cache"]}
]
}
{
"type": "mindmap",
"center": "Architecture",
"nodes": ["Frontend", "Backend", "Database", "Cache", "CDN"]
}
{
"type": "flowchart",
"nodes": [
{"id": "a", "text": "Start", "x": 0, "y": 0},
{"id": "b", "text": "Process", "x": 0, "y": 200},
{"id": "c", "text": "End", "x": 0, "y": 400}
],
"edges": [
{"from": "a", "to": "b"},
{"from": "b", "to": "c"}
]
}
| Type | Color |
|---|---|
| research | Blue |
| analysis | Purple |
| review | Orange |
| final | Green |
| factcheck | Green |
| input | Red |
| default | Grey |
Requires Python 3 (standard library only, no pip install needed).
Opens in excalidraw.com -- drag and drop the .excalidraw file.