Claude Cowork is a special Claude Desktop build that works inside a folder you point it at—it reads, writes, and organizes files there while it runs a plan. Cowork is currently a macOS-only preview backed by a sandboxed Linux VM; this repo reverse-engineers and stubs the macOS-native pieces so Cowork can run directly on Linux (x86_64)—no VM and no macOS required. The stub translates VM paths to host paths so Cowork points at the right files on Linux.
How it works:
- Unofficial research preview: This is reverse-engineered and may break when Claude Desktop updates.
- Linux support: Currently targets Linux x86_64. Wayland: auto-detected via
$WAYLAND_DISPLAY/$XDG_SESSION_TYPE(Ozone backend). - Access: Requires a Claude account. The installer auto-downloads the Claude Desktop DMG; no macOS machine needed.
| Distro | Desktop | Status | Notes |
|---|---|---|---|
| Arch Linux | Hyprland (Wayland) | Tested | Primary dev environment |
| Arch Linux | KDE Plasma (Wayland) | Expected | KDE Wallet exposed via SecretService D-Bus |
| Arch Linux | GNOME (Wayland) | Expected | Global shortcuts require manual DE config (GNOME lacks portal support) |
| Ubuntu 22.04+ | GNOME / X11 | Expected | gnome-keyring provides SecretService |
| Fedora 39+ | GNOME / KDE | Expected | May need p7zip-plugins for DMG extraction |
| Debian 12+ | Any | Expected | p7zip-full in apt |
| NixOS | Any | Untested | Electron + bwrap sandboxing may need extra config |
| openSUSE | Any | Tested | Uses 7zip package (not p7zip); nodejs-default for Node.js |
Known caveats:
- Wayland compositors that don't implement the
GlobalShortcutsportal (GNOME) won't have global hotkey support -- set a custom shortcut in your DE settings instead. - If
gnome-keyringor another SecretService provider isn't running, the launcher falls back to--password-store=basic(credentials stored on disk, not in a keyring). - The
/sessionsroot symlink requiressudoonce during install. If your distro restricts root symlinks differently, point it manually:sudo ln -s ~/.local/share/claude-cowork/sessions /sessions.
Run ./install.sh --doctor (or claude-desktop --doctor) after install to validate your environment.
- Linux x86_64 (tested on Arch Linux, kernel 6.18.7)
- Node.js 18+ / npm
- Electron (system package or npm global)
- asar (
npm install -g @electron/asar) - p7zip (to extract the macOS DMG; openSUSE uses
7zipinstead) - bubblewrap (sandbox isolation)
- Python 3.11+ (for auto-download and patches)
- Claude Pro (or higher) subscription for Cowork access
- Secret service provider (optional) -- gnome-keyring, KDE Wallet, or KeePassXC for secure credential storage. Without one, the launcher falls back to
--password-store=basic.
git clone https://github.com/johnzfitch/claude-cowork-linux.git
cd claude-cowork-linux
./install.sh # auto-downloads the latest DMG
claude-desktopyay -S claude-cowork-linux # auto-downloads the latest DMGbash <(curl -fsSL https://raw.githubusercontent.com/johnzfitch/claude-cowork-linux/master/install.sh)The installer automatically downloads the latest Claude Desktop DMG (using rnet to bypass Cloudflare on the API endpoint, then curl for the CDN download). You can also provide a DMG manually:
./install.sh ~/Downloads/Claude-*.dmg
# or
CLAUDE_DMG=~/Downloads/Claude-1.1.4010.dmg ./install.shImportant
This repo does not include Anthropic's proprietary code. The installer downloads it directly from Anthropic's CDN.
┌─────────────────────────────────────────────────────────────────┐
│ Claude Desktop (Electron) │
├─────────────────────────────────────────────────────────────────┤
│ ipc-handler-setup.js (baked into app.asar) │
│ ├── EIPC handler registration (all namespaces) │
│ ├── Session lifecycle & sessions.json persistence │
│ └── Transcript migration & directory setup │
├─────────────────────────────────────────────────────────────────┤
│ @ant/claude-swift (STUBBED) │
│ ├── vm.setEventCallbacks() → Register process event handlers │
│ ├── vm.startVM() → No-op (we're already on Linux) │
│ ├── vm.spawn() → Creates mount symlinks, spawns processes │
│ ├── vm.kill() → Kills spawned processes │
│ └── vm.writeStdin() → Writes to process stdin │
├─────────────────────────────────────────────────────────────────┤
│ @ant/claude-native (STUBBED) │
│ ├── AuthRequest → Opens system browser (xdg-open) │
│ └── Platform helpers → Minimal compatibility shims │
├─────────────────────────────────────────────────────────────────┤
│ Claude Code Binary │
│ └── Resolved from ~/.local/bin, mise/asdf shims, PATH, etc. │
└─────────────────────────────────────────────────────────────────┘
The stub translates VM paths to host paths:
| VM Path | Host Path |
|---|---|
/usr/local/bin/claude or claude |
Resolved via ~/.local/bin/claude, ~/.config/Claude/claude-code-vm/{version}/claude, or PATH |
/sessions/... |
~/.local/share/claude-cowork/sessions/... |
When you select a folder in Cowork, the stub creates symlinks to make it accessible at the expected VM path:
~/.local/share/claude-cowork/sessions/<session-name>/mnt/
├── <folder> → /home/user/path/to/selected/folder (symlink)
├── .claude → ~/.config/Claude/.../session/.claude (symlink)
├── .skills → ~/.config/Claude/.../skills-plugin/... (symlink)
└── uploads/ (directory for file uploads)
The additionalMounts parameter from Claude Desktop provides the mapping between mount names and host paths.
Note
The Claude Code binary expects /sessions to exist. install.sh creates /sessions as a symlink into ~/.local/share/claude-cowork/sessions (requires sudo once) so you don't need a world-writable root directory.
1. Platform Spoofing
The app sends these headers to Anthropic's servers:
'Anthropic-Client-OS-Platform': 'darwin'
'Anthropic-Client-OS-Version': '14.0'This makes the server think we're on macOS 14 (Sonoma), enabling Cowork features.
2. Platform Gate Bypass
The platform-gate function (minified name changes per build — xPt() in v1.1.3963, wj() in older builds) checks if Cowork is supported. enable-cowork.py finds it automatically and replaces it to unconditionally return {status: "supported"}.
3. Swift Addon Stub
The original @ant/claude-swift uses Apple's Virtualization Framework. Our stub:
- Implements the same API surface
- Uses Node.js
child_processto spawn real processes - Line-buffers JSON output for proper stream parsing
- Translates VM paths to host paths
Key insight: The app calls Si() which returns module.default.vm, so methods must be on the vm object.
4. Native Utilities Stub
The app also expects @ant/claude-native (a macOS-specific native module). Our stub provides minimal compatibility so the app can start on Linux. For example, OAuth flows fall back to opening the system browser via xdg-open.
5. IPC Handler Setup
All EIPC handlers (session lifecycle, transcript management, feature flags) are registered by ipc-handler-setup.js, which is baked directly into app.asar. launch.sh repacks the asar automatically whenever stubs or frame-fix files change — no manual step required.
[!NOTE] Prior to v3.0.3, a separate
linux-loader.jsran alongside the asar-baked handler via--require. It has been removed —ipc-handler-setup.jsis now the sole IPC implementation.
6. Direct Execution
On macOS, Cowork runs a Linux VM. On Linux, we skip the VM entirely and run the Claude Code binary directly on the host. This is actually simpler and faster!
The stub resolves the binary in priority order:
$CLAUDE_CODE_PATH (explicit override)
~/.config/Claude/claude-code-vm/{version}/claude (downloaded by Desktop)
~/.local/bin/claude (npm/bun global)
~/.npm-global/bin/claude
/usr/local/bin/claude
/usr/bin/claude
/home/linuxbrew/.linuxbrew/bin/claude (Linuxbrew system)
~/.linuxbrew/bin/claude (Linuxbrew user)
~/.local/share/mise/shims/claude (mise version manager)
~/.asdf/shims/claude (asdf version manager)
claude-cowork-linux/
├── stubs/
│ ├── @ant/claude-swift/js/index.js # Primary stub: vm.spawn(), filterEnv(), path translation
│ ├── @ant/claude-native/index.js # Auth (xdg-open), keyboard constants, platform helpers
│ └── frame-fix/
│ ├── frame-fix-wrapper.js # Early bootstrap: TMPDIR fix, platform spoofing, graceful shutdown
│ └── frame-fix-entry.js # Entry point: loads frame-fix-wrapper then main index.js
├── cowork/
│ ├── event_dispatch.js # EIPC event dispatch for LocalAgentModeSessions
│ └── sdk_bridge.js # SDK bridge (spawn dead code, kept for session state)
├── tests/
│ ├── test-install-paths.sh # 8-stage install validation (static analysis → Docker)
│ └── Dockerfile.test # Arch Linux container for full install testing
├── docs/
│ ├── extensions.md # MCP and Chrome Extension integration overview
│ ├── known-issues.md # Safe Storage encryption, keyring setup
│ └── safestorage-tokens.md # How to persist tokens across restarts
├── config/
│ └── hyprland/claude.conf # Optional: Hyprland window rules
├── .github/assets/ # README icons and hero image
├── enable-cowork.py # Patches platform gate to return {status:"supported"}
├── fetch-dmg.py # Auto-download Claude DMG via rnet (Cloudflare bypass)
├── install.sh # Installer + --doctor preflight diagnostics
├── launch.sh # Launcher: syncs stubs, repacks asar, runs electron
├── launch-devtools.sh # Launcher with --inspect (Node.js DevTools)
├── validate.sh # Env var checks, stub URL validation, log scanning
├── PKGBUILD # Arch Linux AUR package definition
├── OAUTH-COMPLIANCE.md # OAuth token handling audit
├── CLAUDE.md # Project guide and critical paths
├── README.md # This file
└── LICENSE
After running install.sh, the linux-app-extracted/ directory will contain the extracted Claude Desktop.
If the automated installer doesn't work, follow these steps:
1. Extract Claude Desktop from DMG
The installer handles app.asar extraction automatically. For manual extraction or older unpacked versions:
# Extract DMG with 7z
7z x Claude-*.dmg -o/tmp/claude-extract
# Create app directory
mkdir -p linux-app-extracted
# For newer versions (app.asar):
if [ -f "/tmp/claude-extract/Claude/Claude.app/Contents/Resources/app.asar" ]; then
npx --yes asar extract "/tmp/claude-extract/Claude/Claude.app/Contents/Resources/app.asar" linux-app-extracted
# Copy unpacked files if they exist
[ -d "/tmp/claude-extract/Claude/Claude.app/Contents/Resources/app.asar.unpacked" ] && \
cp -r "/tmp/claude-extract/Claude/Claude.app/Contents/Resources/app.asar.unpacked/"* linux-app-extracted/
# For older versions (unpacked app/):
elif [ -d "/tmp/claude-extract/Claude/Claude.app/Contents/Resources/app" ]; then
cp -r "/tmp/claude-extract/Claude/Claude.app/Contents/Resources/app/"* linux-app-extracted/
fi
# Cleanup
rm -rf /tmp/claude-extract2. Install Stub Modules
# Copy our stubs over the original modules
cp -r stubs/@ant/* linux-app-extracted/node_modules/@ant/3. Patch index.js
Run the cowork patch (auto-detects the minified function name):
python3 enable-cowork.py linux-app-extracted/.vite/build/index.js4. Create Required Directories
# Create user session directory
mkdir -p ~/.local/share/claude-cowork/sessions
chmod 700 ~/.local/share/claude-cowork/sessions
# Create symlink (requires sudo once)
sudo ln -s ~/.local/share/claude-cowork/sessions /sessions5. Install Electron and asar
# System package (preferred)
# Arch: pacman -S electron
# Ubuntu/Debian: apt install electron
# Or via npm:
npm install -g electron @electron/asarVerify patches were applied
Check that the Cowork patch is present in linux-app-extracted/.vite/build/index.js:
grep -q 'cowork-patched' linux-app-extracted/.vite/build/index.js && echo "✓ Cowork patch applied" || echo "✗ Patch missing - run ./install.sh"The patch replaces the platform-gate function to return {status:"supported"} unconditionally, enabling Cowork on Linux. The /*cowork-patched*/ marker indicates successful patching.
EACCES: permission denied, mkdir '/sessions'
Create a symlink to user space instead of a world-writable directory:
mkdir -p ~/.local/share/claude-cowork/sessions
sudo ln -s ~/.local/share/claude-cowork/sessions /sessionsUnexpected non-whitespace character after JSON
JSON parsing issue. The stub uses line buffering to send complete JSON objects. If this persists, check the trace log:
cat ~/.local/share/claude-cowork/logs/claude-swift-trace.logFailed to start Claude's workspace
Run claude-desktop --doctor first to check your environment. Then verify:
- The swift stub is properly loaded (check for
[claude-swift-stub] LOADING MODULEin logs) - The Claude binary exists at one of the resolved paths (
~/.local/bin/claude,~/.config/Claude/claude-code-vm/{version}/claude, etc.) - You have a valid Claude account
Process exits immediately (code=1)
Check stderr in the trace log for the actual error:
tail -50 ~/.local/share/claude-cowork/logs/claude-swift-trace.logCommon issues:
- Missing
/sessionssymlink - Binary not found
- Permission issues
t.setEventCallbacks is not a function
This means the stub isn't exporting methods correctly. The app expects:
module.default.vm.setEventCallbacks()— NOT on the class directly
Ensure the stub has methods on the this.vm object, not just the class.
App won't relaunch / appears to do nothing
A previous instance may not have shut down cleanly, leaving a stale lock file. Clear it and relaunch:
rm -f ~/.config/Claude/SingletonLock ~/.config/Claude/SingletonSocket ~/.config/Claude/SingletonCookie
claude-desktopThis was fixed in v3.0.4 — the app now handles SIGTERM and window-close events gracefully. Update to the latest version to prevent it from recurring.
Global shortcuts don't work on Wayland (GNOME)
The app enables GlobalShortcutsPortal for Wayland global shortcut support via xdg-desktop-portal. This works on KDE Plasma and Hyprland but not on GNOME — xdg-desktop-portal-gnome has not implemented the GlobalShortcuts portal yet.
Workaround for GNOME Wayland users: Set a custom shortcut in GNOME Settings > Keyboard > Custom Shortcuts to launch claude-desktop.
./launch.sh # repacks asar automatically if stubs changed
./launch-devtools.sh # with Node.js inspector
./validate.sh # env var checks, stub URL validation, log errors
./install.sh --doctor # preflight: binaries, node, CLI, /sessions, secret service, patches# Include Claude Code stdout/stderr in the trace log (redacted, but still treat logs as sensitive)
export CLAUDE_COWORK_TRACE_IO=1
# Enable debug mode
export CLAUDE_COWORK_DEBUG=1
# Enable Electron logging
export ELECTRON_ENABLE_LOGGING=1
# Clear old logs
rm -f ~/.local/share/claude-cowork/logs/claude-swift-trace.log
# Run with output capture
./launch.sh 2>&1 | tee /tmp/claude-full.log
# In another terminal, watch the trace
tail -f ~/.local/share/claude-cowork/logs/claude-swift-trace.logThe stub writes to ~/.local/share/claude-cowork/logs/claude-swift-trace.log:
[timestamp] === MODULE LOADING ===
[timestamp] vm.setEventCallbacks() CALLED
[timestamp] vm.startVM() bundlePath=... memoryGB=4
[timestamp] vm.spawn() id=... cmd=... args=[...]
[timestamp] Translated command: /usr/local/bin/claude -> ~/.config/Claude/...
[timestamp] stdout line: {"type":"stream_event",...}
[timestamp] Process ... exited: code=0
This project includes security hardening:
- Command allowlist - Only vetted binary paths are accepted by
vm.spawn(); unknown commands are rejected - Command injection prevention - Uses
execFile()instead ofexec() - Path traversal protection - Validates session paths with
isPathSafe() - Environment filtering - Allowlist of safe environment variables
- Secure permissions - Session directory uses 700, not 777
- Symlink for /sessions - No world-writable directories
- URL origin validation -
Auth_$_doAuthInBrowserandAuthRequest.start()enforce Anthropic-only domains - OAuth compliance -
BLOCKED_ENV_KEY_PATTERN+CREDENTIAL_EXEMPT_KEYSprevent token leakage to subprocesses
Caution
This project is for educational and research purposes. Claude Desktop is proprietary software owned by Anthropic PBC. Use of Cowork requires a valid Claude account.
This repository contains only stub implementations and patches—not the Claude Desktop application itself. You must obtain Claude Desktop directly from Anthropic.
This project is not affiliated with, endorsed by, or sponsored by Anthropic. "Claude" is a trademark of Anthropic PBC.
Reverse engineered and implemented by examining the Claude Desktop Electron app structure, binary analysis with pyghidra-lite, and iterative debugging.
Contributors:
- @Boermt-die-Buse -- Linux UI fixes: native window frames, titlebar patch, icon extraction
- @JaPossert -- Resources copy fix, Wayland global shortcuts report
- @alpham8 -- openSUSE compatibility fixes, binary resolution paths, Swift stub method stubs
- @matiasandina -- icon fix and terminal detach proposals (issue #37)
MIT License · See LICENSE for details
