Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/trungdo9/ClauKit --skill excalidraw명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | excalidraw |
| description | Hand-drawn style diagrams with Excalidraw |
| category | Design & Frontend |
| status | active |
Create collaborative hand-drawn style diagrams and wireframes with end-to-end encryption. Excalidraw renders shapes, arrows, and freehand drawings as sketches to communicate design ideas, system diagrams, and collaborative whiteboarding without formal design tool overhead.
.excalidraw JSON formatDo NOT use when: Requiring formal publication-ready styling, precise node positioning/alignment, or automatic graph layout algorithms (use Mermaid or tech-graph instead).
@excalidraw/excalidraw npm package into your appExcalidraw renders all shapes with soft, irregular edges mimicking pencil sketches. This casual style reduces design pressure, making it ideal for brainstorming and early-stage design communication. Maintains hand-drawn feel even in PNG/SVG exports.
Infinite zoomable whiteboard with panning and keyboard shortcuts (Ctrl+Z undo, delete, arrow keys). No page constraints; suitable for large, exploratory diagrams. Real-time synchronization updates all collaborative clients.
Collaboration links encrypt diagram data client-side; server never sees unencrypted content. No login required for sharing. Invite links remain valid indefinitely.
PNG (raster), SVG (vector), clipboard copy, and JSON (.excalidraw) format. JSON preserves all editable layer data; SVG/PNG suitable for documentation and sharing.
// Embed Excalidraw in React app
import { Excalidraw } from "@excalidraw/excalidraw";
export default function MyDiagram() {
return <Excalidraw />;
}
Create a simple wireframe: draw a rectangle (top navigation), smaller rectangles below (content), arrows showing navigation flow, add text labels. Export as SVG for README or PNG for Slack sharing.
.excalidraw JSON (loses editability)