You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched existing requests and this feature hasn't been requested yet
This is a single feature request (not multiple features)
Problem Statement
Cowork stores scheduled task definitions at the hardcoded path ~/Documents/Claude/Scheduled/<task-name>/. There is no setting in the app to change this location.
The hardcoded path under a TCC-gated, user-redirectable folder causes a class of bugs that can't be cleanly fixed at the symptom layer:
Corporate / managed Macs where Documents is subject to MDM policies, DLP scanning, or principle-of-least-privilege restrictions on app access — frequent small-file writes from scheduled tasks conflict with these.
For users who already have tasks at ~/Documents/Claude/Scheduled/, a one-time migration on update — or a symlink from the new location to the old — would preserve backward compatibility.
Alternative Solutions
No response
Priority
Medium - Would be very helpful
Feature Category
Configuration and settings
Use Case Example
Scenario: a user on a corporate-managed Mac installs Claude Desktop. The macOS TCC prompt for Documents folder access appears during onboarding without explaining that Cowork's scheduled tasks specifically depend on it. The user dismisses or denies the prompt.
User opens Cowork and creates a scheduled task ("daily morning briefing")
Task creation succeeds; the UI shows the task as configured normally
User attempts to run the task or starts any new Cowork session
Session fails immediately with RPC error: failed to mount ... operation not permitted
User has no in-app indication that the failure is due to a missing TCC grant on ~/Documents/
User files a bug report or gives up on Cowork
With the proposed fix (default storage moved to ~/Library/Application Support/Claude/Scheduled/):
User opens Cowork and creates a scheduled task
Task is stored in app-managed location, no TCC dependency
Task runs successfully regardless of Documents folder permission state
Additional Context
Filed alongside #54744 (the bug this would structurally prevent). Cross-platform — applies to macOS and Windows.
The same architectural choice — app state under ~/Library/Application Support/ on macOS and %APPDATA% on Windows — is already used by Claude Desktop for vm_bundles/, MCP server configs, and other internal state. Scheduled tasks are the outlier in living under a user-visible, TCC-gated location.
If user-visible access to scheduled-task definitions is a deliberate design choice (e.g., so users can edit SKILL.md files directly in Finder), a symlink from ~/Documents/Claude/Scheduled/ → ~/Library/Application Support/Claude/Scheduled/ would maintain that affordance while moving the canonical storage out of the TCC-gated path.
Preflight Checklist
Problem Statement
Cowork stores scheduled task definitions at the hardcoded path
~/Documents/Claude/Scheduled/<task-name>/. There is no setting in the app to change this location.The hardcoded path under a TCC-gated, user-redirectable folder causes a class of bugs that can't be cleanly fixed at the symptom layer:
~/Documentsclean and put app-managed data elsewhere have no way to redirect Cowork.Two adjacent feature requests exist ([FEATURE] Cowork: Allow setting a default workspace folder for all sessions #34604 for default workspace folder, [FEATURE] Add a persistent default output folder setting for Cowork sessions #47179 for default output folder) but neither covers the scheduled-task storage root specifically.
Proposed Solution
Add a configurable storage location for scheduled tasks, with a sensible new default:
~/Library/Application Support/Claude/Scheduled/on macOS and%APPDATA%\Claude\Scheduledon Windows are the conventional locations for app-managed user data. This single change would eliminate [BUG] Cowork: Session init fails to mount scheduled task config folder outside project mount after macOS Desktop upgrade #54744, [BUG] Cowork Scheduled Task — SKILL.md Not Accessible From Session VM (Windows, Non-Standard Documents Path) #34667, and [BUG] Claude CoWork does not support Windows 11 setups w/two hard drives and Documents on the D:\ drive. #43197 without requiring any user-facing configuration.{ "cowork": { "scheduledTasksRoot": "~/cowork-data/Scheduled" } }For users who already have tasks at
~/Documents/Claude/Scheduled/, a one-time migration on update — or a symlink from the new location to the old — would preserve backward compatibility.Alternative Solutions
No response
Priority
Medium - Would be very helpful
Feature Category
Configuration and settings
Use Case Example
Scenario: a user on a corporate-managed Mac installs Claude Desktop. The macOS TCC prompt for Documents folder access appears during onboarding without explaining that Cowork's scheduled tasks specifically depend on it. The user dismisses or denies the prompt.
User opens Cowork and creates a scheduled task ("daily morning briefing")
Task creation succeeds; the UI shows the task as configured normally
User attempts to run the task or starts any new Cowork session
Session fails immediately with
RPC error: failed to mount ... operation not permittedUser has no in-app indication that the failure is due to a missing TCC grant on
~/Documents/User files a bug report or gives up on Cowork
With the proposed fix (default storage moved to
~/Library/Application Support/Claude/Scheduled/):User opens Cowork and creates a scheduled task
Task is stored in app-managed location, no TCC dependency
Task runs successfully regardless of Documents folder permission state
Additional Context
Filed alongside #54744 (the bug this would structurally prevent). Cross-platform — applies to macOS and Windows.
The same architectural choice — app state under
~/Library/Application Support/on macOS and%APPDATA%on Windows — is already used by Claude Desktop forvm_bundles/, MCP server configs, and other internal state. Scheduled tasks are the outlier in living under a user-visible, TCC-gated location.If user-visible access to scheduled-task definitions is a deliberate design choice (e.g., so users can edit
SKILL.mdfiles directly in Finder), a symlink from~/Documents/Claude/Scheduled/→~/Library/Application Support/Claude/Scheduled/would maintain that affordance while moving the canonical storage out of the TCC-gated path.