Skip to content

Commit b013517

Browse files
MrFlounderclaude
andcommitted
feat(draw): add collaborative Excalidraw plugin with real-time collab
Add `crab draw` command as a new plugin that launches an Excalidraw canvas with real-time collaboration via Socket.IO and tunnel sharing (cloudflared/ngrok/bore). Features: - Start/reopen/list/delete drawing sessions saved to .crab/draw/ - Real-time multi-user collaboration with cursor sync - Tunnel support for sharing sessions with remote teammates - Session prefix matching with interactive disambiguation prompt - Autosave every 30s, final save on Ctrl-C - Drawing artifacts commit to git for team sharing Bump version to 0.11.0. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 412d7d3 commit b013517

29 files changed

Lines changed: 7142 additions & 3 deletions

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ Thumbs.db
2525
# Test artifacts
2626
test-output/
2727
coverage/
28+
29+
# Shared local volume (crabcode)
30+
.local

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.10.1"
2+
".": "0.11.0"
33
}

plugins/draw/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/
2+
dist/
3+
ui/node_modules/
4+
ui/dist/

plugins/draw/bin/crab-draw.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/env node
2+
import '../dist/cli.js';

0 commit comments

Comments
 (0)