APT repository for claude-cowork-service — the native Linux backend for Claude Desktop's Cowork feature.
curl -fsSL https://patrickjaja.github.io/claude-cowork-service/install.sh | sudo bash sudo apt install claude-cowork-service
# Import GPG key curl -fsSL https://patrickjaja.github.io/claude-cowork-service/gpg-key.asc \ | sudo gpg --dearmor -o /etc/apt/keyrings/claude-cowork-service.gpg # Add repository echo "deb [signed-by=/etc/apt/keyrings/claude-cowork-service.gpg arch=$(dpkg --print-architecture)] https://patrickjaja.github.io/claude-cowork-service/deb/ ./" \ | sudo tee /etc/apt/sources.list.d/claude-cowork-service.list # Install sudo apt update && sudo apt install claude-cowork-service
# Enable and start the service systemctl --user daemon-reload systemctl --user enable --now claude-cowork # Verify systemctl --user status claude-cowork
Once installed, updates arrive through your normal system updates:
sudo apt update && sudo apt upgrade
yay -S claude-cowork-service (AUR)curl -fsSL .../scripts/install.sh | bash (details)