来源信息
- 仓库
- brycewang-stanford/Auto-Empirical-Research-Skills
- 最近来源活动
- 2026年4月3日 02:07
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 3,291
- 分支
- 432
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
菜单
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill excalidraw-diagram-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | excalidraw-diagram-guide |
| description | Generate hand-drawn style Excalidraw diagrams from text descriptions |
| metadata | {"openclaw":{"emoji":"✏️","category":"tools","subcategory":"diagram","keywords":["Excalidraw","diagram","whiteboard","hand-drawn","sketch","visual"],"source":"https://github.com/excalidraw/excalidraw"}} |
Generate hand-drawn style diagrams, wireframes, and visual explanations using Excalidraw's open-source whiteboard format. This skill enables researchers to create informal yet informative sketches for brainstorming sessions, presentations, and collaborative workshops.
Excalidraw is an open-source virtual whiteboard tool that produces diagrams with a distinctive hand-drawn aesthetic. Unlike formal diagramming tools such as PlantUML or Visio, Excalidraw prioritizes approachability and rapid ideation. Its output looks intentionally informal, which makes it well-suited for early-stage research brainstorming, teaching materials, and conference posters where a polished UML diagram would feel overly rigid.
The tool stores diagrams in a JSON-based .excalidraw format, making them fully version-controllable and programmatically generatable. Researchers can describe what they need in natural language, and this skill translates those descriptions into valid Excalidraw scene files that can be opened in the Excalidraw editor or embedded directly into web pages.
Excalidraw supports real-time collaboration, end-to-end encryption for shared sessions, and export to PNG and SVG. The hand-drawn style is achieved through a custom rendering engine that applies subtle randomization to stroke paths, giving each element a natural, sketched appearance.
The Excalidraw JSON format consists of an array of elements, each with a type (rectangle, ellipse, arrow, text, line, diamond), position coordinates, dimensions, and style properties.
{
"type": "rectangle",
"x": 100,
"y": 200,
"width": 200,
"height": 80,
"strokeColor": "#1e1e1e",
"backgroundColor": "#a5d8ff",
"fillStyle": "hachure",
"strokeWidth": 1,
"roughness": 1,
"roundness": { "type": 3 }
}
| Property | Values | Description |
|---|---|---|
fillStyle | hachure, cross-hatch, solid | Fill pattern style |
roughness | 0, 1, 2 | Hand-drawn roughness level |
strokeWidth | 1, 2, 4 | Line thickness |
strokeStyle | solid, dashed, dotted | Line style |
roundness | null, { "type": 3 } | Corner rounding |
Primary: #1971c2 (blue) Background: #a5d8ff
Accent: #e03131 (red) Background: #ffc9c9
Success: #2f9e44 (green) Background: #b2f2bb
Warning: #f08c00 (orange) Background: #ffec99
Neutral: #495057 (gray) Background: #dee2e6
Describe a research pipeline and generate the corresponding layout:
Input: "Create a flowchart showing: Literature Review -> Research Questions ->
Hypothesis Formation -> Study Design -> Data Collection -> Analysis ->
Results -> Discussion -> Publication"
Each step becomes a rounded rectangle connected by arrows. Decision points (e.g., "Results Significant?") use diamond shapes with branching arrows.
For software or experimental system diagrams, use grouped rectangles with labeled connections:
Input: "Draw a system architecture with three layers:
Frontend (React dashboard),
Backend (FastAPI + PostgreSQL),
External (OpenAlex API, CrossRef API)"
The output places each layer as a dashed-border container with internal component boxes and inter-layer arrows.
exportScale: 2 for high-DPI output.<iframe
src="https://excalidraw.com/#json=YOUR_ENCODED_DATA"
width="800"
height="600"
style="border: none;">
</iframe>
import json
def create_box(text, x, y, width=200, height=80, color="#a5d8ff"):
return [
{
"type": "rectangle",
"x": x, "y": y,
"width": width, "height": height,
"backgroundColor": color,
"fillStyle": "hachure",
"roughness": 1,
"strokeWidth": 1
},
{
"type": "text",
"x": x + 10, "y": y + 25,
"text": text,
"fontSize": 16
}
]
scene = {
"type": "excalidraw",
"version": 2,
"elements": create_box("Literature Review", 100, 100)
+ create_box("Data Analysis", 100, 250)
}
with open("research_flow.excalidraw", "w") as f:
json.dump(scene, f, indent=2)
Excalidraw supports live collaboration through shared session links. Each participant sees real-time cursor positions and edits. Sessions can be encrypted end-to-end using the built-in encryption feature, which is important when sketching unpublished research ideas.
For research teams, the recommended workflow is:
.excalidraw JSON and commit to the project repository\includesvg{} (requires svg package)IPython.display.Image.excalidraw files in the IDE