How to Set Up CoPaw: Alibaba's Open-Source Self-Hosted Agent Workstation
Alibaba’s CoPaw just went open-source and it’s one of the cleanest personal agent setups I’ve seen for developers who want full control over their stack. This guide walks you through a working deployment in under 30 minutes — locally on a Mac, or on a cheap Linux VPS. Prerequisites: Python 3.11+ or Docker A machine with at least 4GB RAM (8GB+ for local models) Optional: Anthropic/OpenAI API key, or a local model via llama.cpp or Ollama Step 1: Clone the Repository git clone https://github.com/agentscope-ai/CoPaw.git cd CoPaw The repo includes a docker-compose.yml for containerized deployment and a standard Python requirements.txt for bare-metal installs. ...