.claude/skills/ts-excalidraw/SKILL.md
Expert guidance for Excalidraw, the open-source virtual whiteboard library for creating hand-drawn style diagrams and sketches. Helps developers embed Excalidraw in React applications, build custom integrations, and leverage the API for programmatic diagram creation.
npx skillsauth add eliferjunior/Claude excalidrawInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Excalidraw, the open-source virtual whiteboard library for creating hand-drawn style diagrams and sketches. Helps developers embed Excalidraw in React applications, build custom integrations, and leverage the API for programmatic diagram creation.
Add an Excalidraw whiteboard to any React application:
// src/components/Whiteboard.tsx — Embed Excalidraw in a React app
import { Excalidraw } from "@excalidraw/excalidraw";
import { ExcalidrawElement } from "@excalidraw/excalidraw/types/element/types";
import { AppState } from "@excalidraw/excalidraw/types/types";
import { useState, useCallback } from "react";
export function Whiteboard() {
const [excalidrawAPI, setExcalidrawAPI] = useState<any>(null);
const handleChange = useCallback(
(elements: readonly ExcalidrawElement[], state: AppState) => {
// Called on every change — debounce before persisting
console.log(`${elements.length} elements on canvas`);
},
[]
);
return (
<div style={{ height: "100vh", width: "100%" }}>
<Excalidraw
ref={(api) => setExcalidrawAPI(api)}
onChange={handleChange}
initialData={{
appState: {
viewBackgroundColor: "#fafafa",
currentItemFontFamily: 1, // 1 = Virgil (hand-drawn), 2 = Helvetica, 3 = Cascadia
},
}}
UIOptions={{
canvasActions: {
loadScene: true,
export: { saveFileToDisk: true },
toggleTheme: true,
},
}}
/>
</div>
);
}
Generate diagrams from code or data:
// src/diagrams/architecture.ts — Generate architecture diagrams programmatically
import { ExcalidrawElement } from "@excalidraw/excalidraw/types/element/types";
interface ServiceNode {
name: string;
type: "api" | "database" | "queue" | "cache" | "frontend";
x: number;
y: number;
}
function createServiceBox(service: ServiceNode): ExcalidrawElement {
const colors: Record<string, string> = {
api: "#a5d8ff", // Blue for APIs
database: "#b2f2bb", // Green for databases
queue: "#ffec99", // Yellow for queues
cache: "#ffc9c9", // Red for caches
frontend: "#d0bfff", // Purple for frontends
};
return {
type: "rectangle",
id: `service-${service.name}`,
x: service.x,
y: service.y,
width: 200,
height: 80,
strokeColor: "#1e1e1e",
backgroundColor: colors[service.type] || "#e9ecef",
fillStyle: "solid",
strokeWidth: 2,
roughness: 1, // 0 = smooth, 1 = hand-drawn, 2 = very rough
roundness: { type: 3, value: 8 },
isDeleted: false,
boundElements: null,
locked: false,
opacity: 100,
angle: 0,
seed: Math.floor(Math.random() * 100000), // Random seed for hand-drawn variation
version: 1,
versionNonce: Math.floor(Math.random() * 100000),
groupIds: [],
frameId: null,
link: null,
updated: Date.now(),
} as any;
}
function createArrow(
fromId: string, toId: string,
startX: number, startY: number,
endX: number, endY: number,
label?: string
): ExcalidrawElement {
return {
type: "arrow",
id: `arrow-${fromId}-${toId}`,
x: startX,
y: startY,
width: endX - startX,
height: endY - startY,
strokeColor: "#1e1e1e",
strokeWidth: 2,
roughness: 1,
points: [[0, 0], [endX - startX, endY - startY]],
startBinding: { elementId: fromId, focus: 0, gap: 4 },
endBinding: { elementId: toId, focus: 0, gap: 4 },
startArrowhead: null,
endArrowhead: "arrow",
isDeleted: false,
opacity: 100,
angle: 0,
seed: Math.floor(Math.random() * 100000),
version: 1,
versionNonce: Math.floor(Math.random() * 100000),
groupIds: [],
boundElements: null,
locked: false,
frameId: null,
link: null,
updated: Date.now(),
} as any;
}
// Generate a full architecture diagram
export function generateArchitectureDiagram(services: ServiceNode[], connections: [string, string][]) {
const elements: ExcalidrawElement[] = [];
// Create service boxes
for (const service of services) {
elements.push(createServiceBox(service));
// Add label text
elements.push({
type: "text",
id: `label-${service.name}`,
x: service.x + 20,
y: service.y + 25,
width: 160,
height: 30,
text: `${service.name}\n(${service.type})`,
fontSize: 16,
fontFamily: 1, // Virgil hand-drawn font
textAlign: "center",
verticalAlign: "middle",
strokeColor: "#1e1e1e",
isDeleted: false,
opacity: 100,
angle: 0,
seed: Math.floor(Math.random() * 100000),
version: 1,
versionNonce: Math.floor(Math.random() * 100000),
groupIds: [],
boundElements: null,
locked: false,
frameId: null,
link: null,
updated: Date.now(),
containerId: `service-${service.name}`,
} as any);
}
// Create arrows for connections
for (const [from, to] of connections) {
const fromService = services.find(s => s.name === from)!;
const toService = services.find(s => s.name === to)!;
elements.push(createArrow(
`service-${from}`, `service-${to}`,
fromService.x + 200, fromService.y + 40,
toService.x, toService.y + 40,
));
}
return elements;
}
Save diagrams as files, images, or shareable links:
// src/utils/export.ts — Export Excalidraw scenes in various formats
import { exportToBlob, exportToSvg, serializeAsJSON } from "@excalidraw/excalidraw";
async function exportAsPNG(excalidrawAPI: any) {
const elements = excalidrawAPI.getSceneElements();
const appState = excalidrawAPI.getAppState();
const blob = await exportToBlob({
elements,
appState: { ...appState, exportWithDarkMode: false },
files: excalidrawAPI.getFiles(),
getDimensions: () => ({ width: 1920, height: 1080, scale: 2 }), // 2x for retina
});
// Download the image
const url = URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;
link.download = "diagram.png";
link.click();
URL.revokeObjectURL(url);
}
async function exportAsSVG(excalidrawAPI: any) {
const elements = excalidrawAPI.getSceneElements();
const svg = await exportToSvg({
elements,
appState: { exportWithDarkMode: false },
files: excalidrawAPI.getFiles(),
});
return svg.outerHTML; // Returns SVG as string
}
function saveAsExcalidrawFile(excalidrawAPI: any) {
const elements = excalidrawAPI.getSceneElements();
const appState = excalidrawAPI.getAppState();
const json = serializeAsJSON(elements, appState, excalidrawAPI.getFiles(), "local");
const blob = new Blob([json], { type: "application/json" });
const url = URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;
link.download = "diagram.excalidraw";
link.click();
}
// Load from .excalidraw file
async function loadFromFile(excalidrawAPI: any, file: File) {
const text = await file.text();
const data = JSON.parse(text);
excalidrawAPI.updateScene({
elements: data.elements,
appState: data.appState,
});
}
Set up real-time collaboration:
// src/components/CollaborativeBoard.tsx — Real-time whiteboard with collaboration
import { Excalidraw, LiveCollaborationTrigger } from "@excalidraw/excalidraw";
export function CollaborativeBoard({ roomId }: { roomId: string }) {
return (
<div style={{ height: "100vh" }}>
<Excalidraw
isCollaborating={true}
// Custom collaboration backend using WebSocket
onCollabButtonClick={() => {
// Open share dialog or copy room link
const link = `${window.location.origin}/board/${roomId}`;
navigator.clipboard.writeText(link);
}}
renderTopRightUI={() => (
<LiveCollaborationTrigger
isCollaborating={true}
onSelect={() => {}}
/>
)}
/>
</div>
);
}
npm install @excalidraw/excalidraw
# Peer dependencies
npm install react react-dom
User request:
I just installed Excalidraw. Help me configure it for my TypeScript + React workflow with my preferred keybindings.
The agent creates the configuration file with TypeScript-aware settings, configures relevant plugins/extensions for React development, sets up keyboard shortcuts matching the user's preferences, and verifies the setup works correctly.
User request:
I want to add a custom programmatic scene creation to Excalidraw. How do I build one?
The agent scaffolds the extension/plugin project, implements the core functionality following Excalidraw's API patterns, adds configuration options, and provides testing instructions to verify it works end-to-end.
roughness: 0 for clean diagrams, 1 for hand-drawn feel, 2 for sketch styleReact.lazy() to avoid blocking initial page loaddevelopment
Expert guidance for Fireworks AI, the platform for running open-source LLMs (Llama, Mixtral, Qwen, etc.) with enterprise-grade speed and reliability. Helps developers integrate Fireworks' inference API, fine-tune models, and deploy custom model endpoints with function calling and structured output support.
development
Convert any website into clean, structured data with Firecrawl — API-first web scraping service. Use when someone asks to "turn a website into markdown", "scrape website for LLM", "Firecrawl", "extract website content as clean text", "crawl and convert to structured data", or "scrape website for RAG". Covers single-page scraping, full-site crawling, structured extraction, and LLM-ready output.
tools
Expert guidance for Firebase, Google's platform for building and scaling web and mobile applications. Helps developers set up authentication, Firestore/Realtime Database, Cloud Functions, hosting, storage, and analytics using Firebase's SDK and CLI.
development
When the user needs to build file upload functionality for a web application. Use when the user mentions "file upload," "image upload," "upload endpoint," "multipart upload," "presigned URL," "S3 upload," "file validation," "upload to cloud storage," or "accept user files." Handles upload endpoints, file validation (type, size, magic bytes), cloud storage integration, and upload status tracking. For image/video processing after upload, see media-transcoder.