What problem does it solve?
This Skill enables users to create diagrams by writing standard Excalidraw element JSON, eliminating the need for manual drawing or complex diagram software.
Core Features & Use Cases
- JSON-based Diagram Creation: Generate diagrams programmatically using Excalidraw element JSON.
- No Software Required: Create and edit diagrams using a simple JSON format without needing to install or open any applications.
- Use Case: Ideal for creating architecture diagrams, flowcharts, sequence diagrams, and more. Users can write JSON to represent their diagram elements and save them as
.excalidraw files for easy sharing and editing.
Quick Start
Use the excalidraw skill to create a simple rectangle diagram with the following JSON input:
{
"type": "excalidraw",
"version": 2,
"source": "linket-agent",
"elements": [
{
"type": "rectangle",
"id": "r1",
"x": 100,
"y": 100,
"width": 200,
"height": 100
}
],
"appState": {
"viewBackgroundColor": "#ffffff"
}
}