← Reddit

How to fix Cowork's Workspace Disk error

Reddit · Kirghiz · April 19, 2026
A user experiencing a Workspace Disk error multiple times daily when opening Claude reported that the cleanup function provides only temporary relief. The error occurs during a scheduled task that reads emails with a specific label and posts summaries as Salesforce tasks.

Detailed Analysis

A recurring "Workspace Disk error" in Claude Cowork — Anthropic's AI-powered productivity environment — has surfaced as a persistent pain point for users running automated workflows, with standard in-app remediation steps proving insufficient for long-term resolution. The issue manifests repeatedly even after users invoke the built-in "Cleanup" function, indicating that the surface-level fix addresses symptoms rather than root causes. In the case described, the user's workflow is relatively modest: a scheduled task that reads Gmail messages under a specific label and posts summarized content to Salesforce. The recurrence despite low computational demands suggests the problem is infrastructural rather than task-complexity-related.

The underlying architecture of Claude Cowork is central to understanding the failure mode. The application runs a Linux virtual machine through platform-native virtualization frameworks — Apple's Virtualization framework on macOS and Microsoft's Host Compute System on Windows — and this sandboxed environment requires a meaningful floor of available disk space, reportedly at least 10GB, given that the VM image itself consumes approximately that amount. When the host system's storage falls below operational thresholds, the VM encounters ENOSPC (no space left on device) errors, triggering the visible disk error. On Windows specifically, a separate compounding issue has been documented across multiple GitHub issues in the claude-code repository: the CoworkVMService fails to start or stay running reliably, particularly on Windows 11 Home and Pro editions, requiring manual service restarts via PowerShell after each system reboot.

The broader significance of these issues lies in what they reveal about the current maturity of Cowork as a product. Anthropic has introduced a sandboxed, VM-based execution environment to give Claude agentic capabilities — the ability to run code, access files, and interact with external services autonomously — but the operational stability of that environment on consumer hardware remains inconsistent. The known bugs tracked under GitHub issue numbers 24918, 25241, and 27010 indicate that Anthropic's engineering teams are actively aware of the Windows service reliability problem, and fixes are reportedly in progress. However, the gap between awareness and patch deployment leaves users in a position where workarounds — such as scripted service restarts at boot — are the only durable mitigation.

For users running recurring automations like the Gmail-to-Salesforce pipeline described, this instability has practical consequences beyond inconvenience. Scheduled tasks that depend on a healthy VM sandbox will silently fail or require manual intervention each time the disk error surfaces, undermining the reliability that automation is meant to provide. The recommended approach for persistent resolution involves a combination of ensuring adequate free disk space, granting appropriate file system permissions through OS-level privacy settings, keeping Claude Desktop updated to the latest build, and — on Windows — automating the CoworkVMService restart through a privileged shortcut. None of these measures are discoverable from within the application itself, representing a documentation and UX gap that Anthropic will need to close as Cowork scales to broader adoption.

The Cowork disk error episode reflects a wider pattern observable across the agentic AI tooling landscape: the transition from conversational AI to persistent, task-executing agents introduces an entirely new class of systems engineering challenges. Unlike a stateless chat interface, an agent runtime that manages VM lifecycle, disk I/O, external API connections, and scheduled execution must meet the reliability standards of traditional software infrastructure. As Anthropic, OpenAI, Google, and others accelerate the deployment of agentic products, the stability of the underlying execution environments — not just the quality of the models — will increasingly determine user trust and enterprise adoption. The Cowork case illustrates that even well-resourced AI labs face non-trivial hurdles in delivering that stability consistently across heterogeneous consumer hardware configurations.

Read original article →