excalidraw
Excalidraw Diagram Generation
Generate .excalidraw JSON files that open directly in Excalidraw.
Quick Start
Minimal valid file:
{
"type": "excalidraw",
"version": 2,
"source": "https://excalidraw.com",
"elements": [],
"appState": { "viewBackgroundColor": "#ffffff" },
"files": {}
}
Workflow
- Identify diagram type (flowchart, architecture, sequence, mind map, wireframe, org chart)
- Plan element layout with consistent spacing (use 20px grid)
- Generate elements with unique IDs and proper bindings
- Write complete JSON to
.excalidrawfile
Element Patterns
Shape with Label
Always bind text to container bidirectionally:
// Rectangle
{
"type": "rectangle",
"id": "box_1",
"x": 100, "y": 100, "width": 150, "height": 60,
"backgroundColor": "#a5d8ff",
"boundElements": [{ "id": "text_1", "type": "text" }],
...baseProps
}
// Bound text
{
"type": "text",
"id": "text_1",
"containerId": "box_1",
"textAlign": "center",
"verticalAlign": "middle",
...textProps
}
Connected Arrow
Update both arrow and shapes:
// Arrow
{
"type": "arrow",
"id": "arrow_1",
"points": [[0, 0], [150, 0]],
"startBinding": { "elementId": "box_1", "fixedPoint": [1.0, 0.5001], "mode": "orbit" },
"endBinding": { "elementId": "box_2", "fixedPoint": [0.0, 0.5001], "mode": "orbit" },
"endArrowhead": "arrow",
...baseProps
}
// Both shapes need boundElements updated
"boundElements": [{ "id": "arrow_1", "type": "arrow" }]
Diagram-Specific Patterns
Flowchart: Ellipse (start/end), Rectangle (process), Diamond (decision), vertical flow with 70px gaps
Sequence Diagram: Rectangles (actors) at top, dashed vertical lines (lifelines), horizontal arrows (messages)
Architecture: Rectangles with rounded corners, group related components, use frames for boundaries
Mind Map: Central ellipse, radiating lines to topic rectangles, organic layout
Org Chart: Rectangles with hierarchy, lines (not arrows) for connections
Critical Rules
-
Bidirectional bindings - When arrow connects to shape, update BOTH:
- Arrow's
startBinding/endBinding - Shape's
boundElementsarray
- Arrow's
-
fixedPoint precision - Use
0.5001not0.5to avoid floating point issues -
Unique IDs - Every element needs unique
id -
Calculate width/height for lines/arrows from points array
-
Required base properties for every element:
id, type, x, y, width, height, angle, strokeColor, backgroundColor, fillStyle, strokeWidth, strokeStyle, roughness, opacity, roundness, seed, version, versionNonce, isDeleted, updated, groupIds, frameId, boundElements, link, locked, index
Common Values
Colors:
- Stroke:
#1e1e1e(black),#e03131(red),#2f9e44(green),#1971c2(blue) - Background:
#a5d8ff(blue),#b2f2bb(green),#ffec99(yellow),#ffc9c9(red),#d0bfff(purple)
Defaults:
strokeWidth: 2roughness: 1 (hand-drawn), 0 (smooth for text)opacity: 100fontFamily: 5 (Excalifont)fontSize: 20seed: any random integerversion: 1,versionNonce: 0index: "a0", "a1", "a2"...
Reference
See references/format-spec.md for complete element schemas, all property values, and detailed examples.
More from johnlarkin1/claude-code-extensions
textual
Build terminal user interface (TUI) applications with the Textual framework. Use when creating new Textual apps, adding screens/widgets, styling with TCSS, handling events and reactivity, testing TUI apps, or any task involving "textual", "TUI", or terminal-based Python applications.
146manim
Create mathematical animations and visualizations using Manim (ManimCE - Community Edition). Use this skill when users want to build Manim visualizations, create math animations, animate equations, graphs, geometric proofs, 3D objects, or any programmatic video animation. Triggers on requests mentioning "manim", "mathematical animation", "animate equation", "visualize algorithm", "create animation of", "3D visualization", or building explanatory math videos.
13tauri
Comprehensive Tauri v2 development skill for building cross-platform desktop applications with Rust backends and web frontends. This skill should be used when creating new Tauri apps, adding commands and IPC communication, developing plugins, managing application state, or integrating Rust with JavaScript/TypeScript frontends. Triggers on tasks involving #[tauri::command], invoke(), Tauri plugins, desktop app development, or Rust-WebView integration.
11ics-generator
Generate ICS calendar files (.ics) from natural language descriptions. Use when user wants to create calendar events, meetings, appointments, reminders, recurring events, or schedule items. Triggers on requests mentioning "calendar event", "ICS file", ".ics", "meeting invite", "appointment", "recurring event", "schedule", "RRULE", "reminder", "RSVP", "calendar invite", "block my calendar", or "add to calendar".
9graphviz
Generate GraphViz DOT files (.dot) for directed/undirected graphs, hierarchical layouts, network diagrams, dependency graphs, state machines, and complex graph visualizations. Use when precise node positioning is needed, when rendering to PNG/SVG/PDF is required, when complex graph algorithms (clustering, ranking) are needed, or when dealing with large graphs (100+ nodes). Triggers on requests mentioning GraphViz, DOT language, network diagrams, dependency graphs, or when sophisticated graph layout is required.
6mermaid
Generate Mermaid diagrams (.mmd, .mermaid files, or markdown code blocks) for flowcharts, sequence diagrams, class diagrams, ER diagrams, state diagrams, Gantt charts, pie charts, mindmaps, timelines, and git graphs. Use when user requests diagrams for documentation, markdown files, README visualizations, or any text-based diagram format that renders in GitHub/GitLab. Triggers on requests mentioning Mermaid, markdown diagrams, documentation diagrams, or when output needs to be embedded in markdown.
5