Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

excalidraw-diagramExcalidraw 图表开发

Agent Skill

excalidraw-diagram 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

92,664

周安装

3,923

GitHub Stars

2,831

下载量

32,448
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:excalidraw-diagram(Excalidraw 图表开发)
来源仓库:https://github.com/coleam00/excalidraw-diagram-skill
仓库路径:skills/excalidraw-diagram
安装命令:
npx skills add https://github.com/coleam00/excalidraw-diagram-skill --skill excalidraw-diagram
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/coleam00/excalidraw-diagram-skill --skill excalidraw-diagram

简介

生成 Excalidraw 图表 JSON 文件,这些文件在视觉上争论,而不仅仅是显示信息。

  • 支持简单的概念图(抽象形状、心智模型)和全面的技术图(具体示例、代码片段、真实数据格式)
  • 包括技术图表的研究任务:在设计之前查找实际规格、事件名称、API 和数据格式
  • 提供视觉模式库(扇出、收敛、时间线、树、循环),其中形状结构反映概念行为
  • 需要强制渲染和验证循环:生成 JSON、渲染为 PNG、根据设计意图进行审核、修复视觉缺陷、重复直至正确
  • 使用集中调色板文件中的语义颜色编码;仅当容器具有含义时才默认使用带有容器的自由浮动文本

SKILL.md

Excalidraw Diagram Creator

Generate .excalidraw JSON files that argue visually, not just display information.

Setup: If the user asks you to set up this skill (renderer, dependencies, etc.), see README.md for instructions.

Customization

All colors and brand-specific styles live in one file: references/color-palette.md. Read it before generating any diagram and use it as the single source of truth for all color choices — shape fills, strokes, text colors, evidence artifact backgrounds, everything.

To make this skill produce diagrams in your own brand style, edit color-palette.md. Everything else in this file is universal design methodology and Excalidraw best practices.


Core Philosophy

Diagrams should ARGUE, not DISPLAY.

A diagram isn't formatted text. It's a visual argument that shows relationships, causality, and flow that words alone can't express. The shape should BE the meaning.

The Isomorphism Test: If you removed all text, would the structure alone communicate the concept? If not, redesign.

The Education Test: Could someone learn something concrete from this diagram, or does it just label boxes? A good diagram teaches—it shows actual formats, real event names, concrete examples.


Depth Assessment (Do This First)

Before designing, determine what level of detail this diagram needs:

Simple/Conceptual Diagrams

Use abstract shapes when:

  • Explaining a mental model or philosophy
  • The audience doesn't need technical specifics
  • The concept IS the abstraction (e.g., "separation of concerns")

Comprehensive/Technical Diagrams

Use concrete examples when:

  • Diagramming a real system, protocol, or architecture
  • The diagram will be used to teach or explain (e.g., YouTube video)
  • The audience needs to understand what things actually look like
  • You're showing how multiple technologies integrate

For technical diagrams, you MUST include evidence artifacts (see below).


Research Mandate (For Technical Diagrams)

Before drawing anything technical, research the actual specifications.

If you're diagramming a protocol, API, or framework:

  1. Look up the actual JSON/data formats
  2. Find the real event names, method names, or API endpoints
  3. Understand how the pieces actually connect
  4. Use real terminology, not generic placeholders

Bad: "Protocol" → "Frontend" Good: "AG-UI streams events (RUN_STARTED, STATE_DELTA, A2UI_UPDATE)" → "CopilotKit renders via createA2UIMessageRenderer()"

Research makes diagrams accurate AND educational.


Evidence Artifacts

Evidence artifacts are concrete examples that prove your diagram is accurate and help viewers learn. Include them in technical diagrams.

Types of evidence artifacts (choose what's relevant to your diagram):

Artifact TypeWhen to UseHow to Render
Code snippetsAPIs, integrations, implementation detailsDark rectangle + syntax-colored text (see color palette for evidence artifact colors)
Data/JSON examplesData formats, schemas, payloadsDark rectangle + colored text (see color palette)
Event/step sequencesProtocols, workflows, lifecyclesTimeline pattern (line + dots + labels)
UI mockupsShowing actual output/resultsNested rectangles mimicking real UI
Real input contentShowing what goes IN to a systemRectangle with sample content visible
API/method namesReal function calls, endpointsUse actual names from docs, not placeholders

Example: For a diagram about a streaming protocol, you might show:

  • The actual event names from the spec (not just "Event 1", "Event 2")
  • A code snippet showing how to connect
  • What the streamed data actually looks like

Example: For a diagram about a data transformation pipeline:

  • Show sample input data (actual format, not "Input")
  • Show sample output data (actual format, not "Output")
  • Show intermediate states if relevant

The key principle: show what things actually look like, not just what they're called.


Multi-Zoom Architecture

Comprehensive diagrams operate at multiple zoom levels simultaneously. Think of it like a map that shows both the country borders AND the street names.

Level 1: Summary Flow

A simplified overview showing the full pipeline or process at a glance. Often placed at the top or bottom of the diagram.

*Example*: Input → Processing → Output or Client → Server → Database

Level 2: Section Boundaries

Labeled regions that group related components. These create visual "rooms" that help viewers understand what belongs together.

*Example*: Grouping by responsibility (Backend / Frontend), by phase (Setup / Execution / Cleanup), or by team (User / System / External)

Level 3: Detail Inside Sections

Evidence artifacts, code snippets, and concrete examples within each section. This is where the educational value lives.

*Example*: Inside a "Backend" section, you might show the actual API response format, not just a box labeled "API Response"

For comprehensive diagrams, aim to include all three levels. The summary gives context, the sections organize, and the details teach.

Bad vs Good

Bad (Displaying)Good (Arguing)
5 equal boxes with labelsEach concept has a shape that mirrors its behavior
Card grid layoutVisual structure matches conceptual structure
Icons decorating textShapes that ARE the meaning
Same container for everythingDistinct visual vocabulary per concept
Everything in a boxFree-floating text with selective containers

Simple vs Comprehensive (Know Which You Need)

Simple DiagramComprehensive Diagram
Generic labels: "Input" → "Process" → "Output"Specific: shows what the input/output actually looks like
Named boxes: "API", "Database", "Client"Named boxes + examples of actual requests/responses
"Events" or "Messages" labelTimeline with real event/message names from the spec
"UI" or "Dashboard" rectangleMockup showing actual UI elements and content
~30 seconds to explain~2-3 minutes of teaching content
Viewer learns the structureViewer learns the structure AND the details

Simple diagrams are fine for abstract concepts, quick overviews, or when the audience already knows the details. Comprehensive diagrams are needed for technical architectures, tutorials, educational content, or when you want the diagram itself to teach.


Container vs. Free-Floating Text

Not every piece of text needs a shape around it. Default to free-floating text. Add containers only when they serve a purpose.

Use a Container When...Use Free-Floating Text When...
It's the focal point of a sectionIt's a label or description
It needs visual grouping with other elementsIt's supporting detail or metadata
Arrows need to connect to itIt describes something nearby
The shape itself carries meaning (decision diamond, etc.)Typography alone creates sufficient hierarchy
It represents a distinct "thing" in the systemIt's a section title, subtitle, or annotation

Typography as hierarchy: Use font size, weight, and color to create visual hierarchy without boxes. A 28px title doesn't need a rectangle around it.

The container test: For each boxed element, ask "Would this work as free-floating text?" If yes, remove the container.


Design Process (Do This BEFORE Generating JSON)

Step 0: Assess Depth Required

Before anything else, determine if this needs to be:

  • Simple/Conceptual: Abstract shapes, labels, relationships (mental models, philosophies)
  • Comprehensive/Technical: Concrete examples, code snippets, real data (systems, architectures, tutorials)

If comprehensive: Do research first. Look up actual specs, formats, event names, APIs.

Step 1: Understand Deeply

Read the content. For each concept, ask:

  • What does this concept DO? (not what IS it)
  • What relationships exist between concepts?
  • What's the core transformation or flow?
  • What would someone need to SEE to understand this? (not just read about)

Step 2: Map Concepts to Patterns

For each concept, find the visual pattern that mirrors its behavior:

If the concept...Use this pattern
Spawns multiple outputsFan-out (radial arrows from center)
Combines inputs into oneConvergence (funnel, arrows merging)
Has hierarchy/nestingTree (lines + free-floating text)
Is a sequence of stepsTimeline (line + dots + free-floating labels)
Loops or improves continuouslySpiral/Cycle (arrow returning to start)
Is an abstract state or contextCloud (overlapping ellipses)
Transforms input to outputAssembly line (before → process → after)
Compares two thingsSide-by-side (parallel with contrast)
Separates into phasesGap/Break (visual separation between sections)

Step 3: Ensure Variety

For multi-concept diagrams: each major concept must use a different visual pattern. No uniform cards or grids.

Step 4: Sketch the Flow

Before JSON, mentally trace how the eye moves through the diagram. There should be a clear visual story.

Step 5: Generate JSON

Only now create the Excalidraw elements. See below for how to handle large diagrams.

Step 6: Render & Validate (MANDATORY)

After generating the JSON, you MUST run the render-view-fix loop until the diagram looks right. This is not optional — see the Render & Validate section below for the full process.


Large / Comprehensive Diagram Strategy

For comprehensive or technical diagrams, you MUST build the JSON one section at a time. Do NOT attempt to generate the entire file in a single pass. This is a hard constraint — Claude Code has a ~32,000 token output limit per response, and a comprehensive diagram easily exceeds that in one shot. Even if it didn't, generating everything at once leads to worse quality. Section-by-section is better in every way.

The Section-by-Section Workflow

Phase 1: Build each section

  1. Create the base file with the JSON wrapper (type, version, appState, files) and the first section of elements.
  2. Add one section per edit. Each section gets its own dedicated pass — take your time with it. Think carefully about the layout, spacing, and how this section connects to what's already there.
  3. Use descriptive string IDs (e.g., "trigger_rect", "arrow_fan_left") so cross-section references are readable.
  4. Namespace seeds by section (e.g., section 1 uses 100xxx, section 2 uses 200xxx) to avoid collisions.
  5. Update cross-section bindings as you go. When a new section's element needs to bind to an element from a previous section (e.g., an arrow connecting sections), edit the earlier element's boundElements array at the same time.

Phase 2: Review the whole

After all sections are in place, read through the complete JSON and check:

  • Are cross-section arrows bound correctly on both ends?
  • Is the overall spacing balanced, or are some sections cramped while others have too much whitespace?
  • Do IDs and bindings all reference elements that actually exist?

Fix any alignment or binding issues before rendering.

Phase 3: Render & validate

Now run the render-view-fix loop from the Render & Validate section. This is where you'll catch visual issues that aren't obvious from JSON — overlaps, clipping, imbalanced composition.

Section Boundaries

Plan your sections around natural visual groupings from the diagram plan. A typical large diagram might split into:

  • Section 1: Entry point / trigger
  • Section 2: First decision or routing
  • Section 3: Main content (hero section — may be the largest single section)
  • Section 4-N: Remaining phases, outputs, etc.

Each section should be independently understandable: its elements, internal arrows, and any cross-references to adjacent sections.

What NOT to Do

  • Don't generate the entire diagram in one response. You will hit the output token limit and produce truncated, broken JSON. Even if the diagram is small enough to fit, splitting into sections produces better results.
  • Don't use a coding agent to generate the JSON. The agent won't have sufficient context about the skill's rules, and the coordination overhead negates any benefit.
  • Don't write a Python generator script. The templating and coordinate math seem helpful but introduce a layer of indirection that makes debugging harder. Hand-crafted JSON with descriptive IDs is more maintainable.

Visual Pattern Library

Fan-Out (One-to-Many)

Central element with arrows radiating to multiple targets. Use for: sources, PRDs, root causes, central hubs.

        ○
       ↗
  □ → ○
       ↘
        ○

Convergence (Many-to-One)

Multiple inputs merging through arrows to single output. Use for: aggregation, funnels, synthesis.

  ○ ↘
  ○ → □
  ○ ↗

Tree (Hierarchy)

Parent-child branching with connecting lines and free-floating text (no boxes needed). Use for: file systems, org charts, taxonomies.

  label
  ├── label
  │   ├── label
  │   └── label
  └── label

Use line elements for the trunk and branches, free-floating text for labels.

Spiral/Cycle (Continuous Loop)

Elements in sequence with arrow returning to start. Use for: feedback loops, iterative processes, evolution.

  □ → □
  ↑     ↓
  □ ← □

Cloud (Abstract State)

Overlapping ellipses with varied sizes. Use for: context, memory, conversations, mental states.

Assembly Line (Transformation)

Input → Process Box → Output with clear before/after. Use for: transformations, processing, conversion.

  ○○○ → [PROCESS] → □□□
  chaos              order

Side-by-Side (Comparison)

Two parallel structures with visual contrast. Use for: before/after, options, trade-offs.

Gap/Break (Separation)

Visual whitespace or barrier between sections. Use for: phase changes, context resets, boundaries.

Lines as Structure

Use lines (type: line, not arrows) as primary structural elements instead of boxes:

  • Timelines: Vertical or horizontal line with small dots (10-20px ellipses) at intervals, free-floating labels beside each dot
  • Tree structures: Vertical trunk line + horizontal branch lines, with free-floating text labels (no boxes needed)
  • Dividers: Thin dashed lines to separate sections
  • Flow spines: A central line that elements relate to, rather than connecting boxes
Timeline:           Tree:
  ●─── Label 1        │
  │                   ├── item
  ●─── Label 2        │   ├── sub
  │                   │   └── sub
  ●─── Label 3        └── item

Lines + free-floating text often creates a cleaner result than boxes + contained text.


Shape Meaning

Choose shape based on what it represents—or use no shape at all:

Concept TypeShapeWhy
Labels, descriptions, detailsnone (free-floating text)Typography creates hierarchy
Section titles, annotationsnone (free-floating text)Font size/weight is enough
Markers on a timelinesmall ellipse (10-20px)Visual anchor, not container
Start, trigger, inputellipseSoft, origin-like
End, output, resultellipseCompletion, destination
Decision, conditiondiamondClassic decision symbol
Process, action, steprectangleContained action
Abstract state, contextoverlapping ellipseFuzzy, cloud-like
Hierarchy nodelines + text (no boxes)Structure through lines

Rule: Default to no container. Add shapes only when they carry meaning. Aim for <30% of text elements to be inside containers.


Color as Meaning

Colors encode information, not decoration. Every color choice should come from references/color-palette.md — the semantic shape colors, text hierarchy colors, and evidence artifact colors are all defined there.

Key principles:

  • Each semantic purpose (start, end, decision, AI, error, etc.) has a specific fill/stroke pair
  • Free-floating text uses color for hierarchy (titles, subtitles, details — each at a different level)
  • Evidence artifacts (code snippets, JSON examples) use their own dark background + colored text scheme
  • Always pair a darker stroke with a lighter fill for contrast

Do not invent new colors. If a concept doesn't fit an existing semantic category, use Primary/Neutral or Secondary.


Modern Aesthetics

For clean, professional diagrams:

Roughness

  • roughness: 0 — Clean, crisp edges. Use for modern/technical diagrams.
  • roughness: 1 — Hand-drawn, organic feel. Use for brainstorming/informal diagrams.

Default to 0 for most professional use cases.

Stroke Width

  • strokeWidth: 1 — Thin, elegant. Good for lines, dividers, subtle connections.
  • strokeWidth: 2 — Standard. Good for shapes and primary arrows.
  • strokeWidth: 3 — Bold. Use sparingly for emphasis (main flow line, key connections).

Opacity

Always use opacity: 100 for all elements. Use color, size, and stroke width to create hierarchy instead of transparency.

Small Markers Instead of Shapes

Instead of full shapes, use small dots (10-20px ellipses) as:

  • Timeline markers
  • Bullet points
  • Connection nodes
  • Visual anchors for free-floating text

Layout Principles

Hierarchy Through Scale

  • Hero: 300×150 - visual anchor, most important
  • Primary: 180×90
  • Secondary: 120×60
  • Small: 60×40

Whitespace = Importance

The most important element has the most empty space around it (200px+).

Flow Direction

Guide the eye: typically left→right or top→bottom for sequences, radial for hub-and-spoke.

Connections Required

Position alone doesn't show relationships. If A relates to B, there must be an arrow.


Text Rules

CRITICAL: The JSON text property contains ONLY readable words.

{
  "id": "myElement1",
  "text": "Start",
  "originalText": "Start"
}

Settings: fontSize: 16, fontFamily: 3, textAlign: "center", verticalAlign: "middle"


JSON Structure

{
  "type": "excalidraw",
  "version": 2,
  "source": "https://excalidraw.com",
  "elements": [...],
  "appState": {
    "viewBackgroundColor": "#ffffff",
    "gridSize": 20
  },
  "files": {}
}

Element Templates

See references/element-templates.md for copy-paste JSON templates for each element type (text, line, dot, rectangle, arrow). Pull colors from references/color-palette.md based on each element's semantic purpose.


Render & Validate (MANDATORY)

You cannot judge a diagram from JSON alone. After generating or editing the Excalidraw JSON, you MUST render it to PNG, view the image, and fix what you see — in a loop until it's right. This is a core part of the workflow, not a final check.

How to Render

cd .claude/skills/excalidraw-diagram/references && uv run python render_excalidraw.py <path-to-file.excalidraw>

This outputs a PNG next to the .excalidraw file. Then use the Read tool on the PNG to actually view it.

The Loop

After generating the initial JSON, run this cycle:

1. Render & View — Run the render script, then Read the PNG.

2. Audit against your original vision — Before looking for bugs, compare the rendered result to what you designed in Steps 1-4. Ask:

  • Does the visual structure match the conceptual structure you planned?
  • Does each section use the pattern you intended (fan-out, convergence, timeline, etc.)?
  • Does the eye flow through the diagram in the order you designed?
  • Is the visual hierarchy correct — hero elements dominant, supporting elements smaller?
  • For technical diagrams: are the evidence artifacts (code snippets, data examples) readable and properly placed?

3. Check for visual defects:

  • Text clipped by or overflowing its container
  • Text or shapes overlapping other elements
  • Arrows crossing through elements instead of routing around them
  • Arrows landing on the wrong element or pointing into empty space
  • Labels floating ambiguously (not clearly anchored to what they describe)
  • Uneven spacing between elements that should be evenly spaced
  • Sections with too much whitespace next to sections that are too cramped
  • Text too small to read at the rendered size
  • Overall composition feels lopsided or unbalanced

4. Fix — Edit the JSON to address everything you found. Common fixes:

  • Widen containers when text is clipped
  • Adjust x/y coordinates to fix spacing and alignment
  • Add intermediate waypoints to arrow points arrays to route around elements
  • Reposition labels closer to the element they describe
  • Resize elements to rebalance visual weight across sections

5. Re-render & re-view — Run the render script again and Read the new PNG.

6. Repeat — Keep cycling until the diagram passes both the vision check (Step 2) and the defect check (Step 3). Typically takes 2-4 iterations. Don't stop after one pass just because there are no critical bugs — if the composition could be better, improve it.

When to Stop

The loop is done when:

  • The rendered diagram matches the conceptual design from your planning steps
  • No text is clipped, overlapping, or unreadable
  • Arrows route cleanly and connect to the right elements
  • Spacing is consistent and the composition is balanced
  • You'd be comfortable showing it to someone without caveats

First-Time Setup

If the render script hasn't been set up yet:

cd .claude/skills/excalidraw-diagram/references
uv sync
uv run playwright install chromium

Quality Checklist

Depth & Evidence (Check First for Technical Diagrams)

  1. Research done: Did you look up actual specs, formats, event names?
  2. Evidence artifacts: Are there code snippets, JSON examples, or real data?
  3. Multi-zoom: Does it have summary flow + section boundaries + detail?
  4. Concrete over abstract: Real content shown, not just labeled boxes?
  5. Educational value: Could someone learn something concrete from this?

Conceptual

  1. Isomorphism: Does each visual structure mirror its concept's behavior?
  2. Argument: Does the diagram SHOW something text alone couldn't?
  3. Variety: Does each major concept use a different visual pattern?
  4. No uniform containers: Avoided card grids and equal boxes?

Container Discipline

  1. Minimal containers: Could any boxed element work as free-floating text instead?
  2. Lines as structure: Are tree/timeline patterns using lines + text rather than boxes?
  3. Typography hierarchy: Are font size and color creating visual hierarchy (reducing need for boxes)?

Structural

  1. Connections: Every relationship has an arrow or line
  2. Flow: Clear visual path for the eye to follow
  3. Hierarchy: Important elements are larger/more isolated

Technical

  1. Text clean: text contains only readable words
  2. Font: fontFamily: 3
  3. Roughness: roughness: 0 for clean/modern (unless hand-drawn style requested)
  4. Opacity: opacity: 100 for all elements (no transparency)
  5. Container ratio: <30% of text elements should be inside containers

Visual Validation (Render Required)

  1. Rendered to PNG: Diagram has been rendered and visually inspected
  2. No text overflow: All text fits within its container
  3. No overlapping elements: Shapes and text don't overlap unintentionally
  4. Even spacing: Similar elements have consistent spacing
  5. Arrows land correctly: Arrows connect to intended elements without crossing others
  6. Readable at export size: Text is legible in the rendered PNG
  7. Balanced composition: No large empty voids or overcrowded regions

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.33%
按下载量换算11,788

Claude

28.35%
按下载量换算9,199

Cursor

20.32%
按下载量换算6,593

Gemini CLI

8.67%
按下载量换算2,813

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills