Getting Started with Cowork
| π Languages: English | FranΓ§ais | Π£ΠΊΡΠ°ΡΠ½ΡΡΠΊΠ° πΊπ¦ |
Reading time: ~10 minutes
Goal: Go from zero to your first successful Cowork workflow
Prerequisites
Before starting, ensure you have:
| Requirement | How to Check |
|---|---|
| Pro or Max subscription | claude.ai β Settings β Subscription shows βProβ or βMaxβ |
| macOS or Windows | macOS: Apple menu β About This Mac; Windows: Settings β System β About |
| Claude Desktop app | Applications folder or Spotlight search |
| Latest app version | See verification steps below β οΈ |
β οΈ Verify You Have the Latest Claude Desktop Version
Critical: Cowork requires the latest version of Claude Desktop. If you donβt see βCoworkβ in the mode selector at the top of the app, your version is outdated.
How to verify:
- Open Claude Desktop app
- Look at the top of the sidebar β you should see three modes:
Chat Cowork Code - If you donβt see βCoworkβ, update your app:
- Go to Claude Desktop menu β Check for Updates
- Or download the latest version from claude.ai/download
Official Documentation: For additional help, see Anthropicβs Getting Started with Cowork guide
Subscription Tiers
| Tier | Cost | Cowork Usage |
|---|---|---|
| Pro | $20/mo | Light use (~1-1.5h intensive before reset) |
| Max | $100-200/mo | Heavy use (5x-20x Proβs limit) |
| Team | Per seat | Full Cowork access, admin controls |
| Enterprise | Custom pricing | Full Cowork access, SSO, admin controls |
Donβt Have Access?
| Situation | Action |
|---|---|
| Free tier | Upgrade to Pro ($20) or Max ($100+) |
| Linux | Wait for platform expansion (Linux not announced) |
Step 1: Enable Cowork
1.1 Open Settings
- Launch Claude Desktop app
- Click your profile icon (top right)
- Select Settings
1.2 Enable the Feature
- Navigate to Features or Beta Features section
- Find Cowork toggle
- Enable it
Note: The exact location may vary slightly as the app is updated.
1.3 Verify Activation
After enabling, you should see:
- New βCoworkβ option in conversation mode selector
- Or a dedicated Cowork section/tab
Step 2: Create Your Workspace
Critical: Never grant Cowork access to Documents, Desktop, or home folder directly.
2.1 Create Dedicated Folder
Open Terminal and run:
mkdir -p ~/Cowork-Workspace/{input,output}
This creates:
~/Cowork-Workspace/
βββ input/ # Files you want processed
βββ output/ # Where Cowork puts results
2.2 Grant Folder Access
- Start a new Cowork conversation
- When prompted for folder access, navigate to
~/Cowork-Workspace/ - Grant access only to this folder
2.3 Verify Access
Ask Cowork:
List the contents of my workspace folder
Expected response: Shows input/ and output/ directories.
Step 3: Your First Workflow
Letβs do a simple but complete workflow to verify everything works.
3.1 Prepare Test Files
Create some test files in your input folder:
cd ~/Cowork-Workspace/input
# Create sample files
echo "Meeting notes from Monday" > meeting-monday.txt
echo "Meeting notes from Wednesday" > meeting-wednesday.txt
echo "Project status update" > project-status.txt
echo "Random thoughts" > misc-notes.txt
3.2 Run Your First Task
In Cowork, enter:
Organize the files in ~/Cowork-Workspace/input/ into subfolders
by category. Create a summary of what you organized in the output folder.
3.3 What Should Happen
- Plan display: Cowork shows its intended actions
- Your approval: You review and approve the plan
- Execution: Cowork reorganizes files
- Report: Creates summary in output folder
3.4 Verify Results
Check the result:
ls -la ~/Cowork-Workspace/input/
ls -la ~/Cowork-Workspace/output/
You should see:
- Organized subfolders in
input/ - A summary file in
output/
Step 4: Understanding the Workflow
The Cowork Cycle
Every Cowork task follows this pattern:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β YOUR REQUEST β
β "Organize my files by category" β
βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β ANALYSIS β
β Cowork examines your files β
β Identifies patterns and categories β
βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β PLAN PROPOSAL β
β "I will create 3 folders and move X files..." β
β β οΈ YOU REVIEW THIS BEFORE EXECUTION β
βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β YOUR APPROVAL β
β "Yes, proceed" or "No, modify the plan" β
βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β EXECUTION β
β Cowork performs the approved actions β
βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β REPORT β
β Summary of what was done β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Key Points
- Always review the plan β This is your safety checkpoint
- Be specific β Vague requests lead to unexpected results
- Start small β Test with few files before large batches
- Check results β Verify output before proceeding
Step 5: The CTOC Framework
Power users structure every Cowork prompt with four components:
CONTEXT β TASK β OUTPUT β CONSTRAINTS
The Framework
| Component | What it is | Example |
|---|---|---|
| Context | Background, files, situation | βI have 50 receipts from a business trip to Parisβ¦β |
| Task | Clear single objective | βExtract all expenses into a spreadsheetβ |
| Output | Exact format and location | βSave as ~/Cowork-Workspace/output/paris-expenses.xlsxβ |
| Constraints | Rules, limits, preferences | βUse EUR currency, semicolon formulas, categorize by typeβ |
CTOC Example
CONTEXT: I have meeting notes from the past month in ~/Cowork-Workspace/input/notes/.
They're from different team members with inconsistent formatting.
TASK: Create a consolidated status report from these notes.
OUTPUT: Save as ~/Cowork-Workspace/output/team-status-january.docx
with sections: Executive Summary, Progress by Project, Blockers, Next Steps.
CONSTRAINTS: Keep under 3 pages. Focus on actionable items.
Highlight any risks mentioned.
Quick Patterns
| Pattern | Example |
|---|---|
| Be explicit | β βfiles in ~/Cowork-Workspace/input/β not β βmy filesβ |
| Specify output | β βsave to ~/output/report.docxβ not β βcreate a reportβ |
| Describe format | β βcolumns: Date, Amount, Categoryβ not β βmake a spreadsheetβ |
| Add constraints | β βuse European formula syntaxβ |
Break Down Complex Tasks
Instead of:
β "Process all my receipts, create expense reports, and organize by month"
Do this:
β
Step 1: "List all receipt files in ~/Cowork-Workspace/input/"
β
Step 2: "Extract expense data from these receipts into a single Excel file"
β
Step 3: "Add monthly summary sheets to the Excel file"
This batching approach also optimizes token usage (see Cheatsheet for token budgets).
Step 6: Personalize Your Profile (Optional)
Create a personal profile file so Cowork knows your preferences and communication style.
6.1 Create Your Profile File
In your workspace, create my-profile.md:
# My Communication Profile
## Tone & Style
- Formal (use "vous" with clients) / Casual (use "tu")
- Concise bullet points preferred
- No jargon or anglicisms
## Things I NEVER Do
- Use exclamation marks in emails
- Promise specific deadlines
- Skip the greeting
## Default Signature
Best regards,
[Your Name] - [Company]
6.2 Use Your Profile
Start each conversation with:
Read my-profile.md first. Then [your actual request]
Example:
Read my-profile.md first. Then draft a follow-up email to a client
who hasn't responded to our quote in 2 weeks.
6.3 Benefits
| Benefit | Why It Matters |
|---|---|
| Consistent voice | All outputs match your style |
| Time savings | No need to repeat preferences |
| Team alignment | Share the file with colleagues |
| Portable | Same file works with other AI tools |
Tip: 80% of an effective profile is what you donβt want. Focus on constraints and anti-patterns.
Step 7: Chrome Integration (Optional)
Cowork can use Chrome for web research tasks.
Enable Chrome Access
- When Cowork requests Chrome permission, review carefully
- Grant only for specific research tasks
- Revoke after task completion
Example Web Research Task
Research the top 5 project management tools for small teams.
Save your findings to ~/Cowork-Workspace/output/pm-tools-research.md
with a comparison table.
Security Note
- Review each web action Cowork proposes
- Donβt let Cowork fill forms or make purchases
- Revoke Chrome access when not needed
Step 8: Install Desktop Commander (Recommended)
Desktop Commander is a free official extension that expands what Cowork can do. Most users benefit from it, especially for recurring work.
What Desktop Commander Enables
| Capability | Without Desktop Commander | With Desktop Commander |
|---|---|---|
| File access | Workspace folder only | Any folder you authorize |
| Memory between sessions | None β starts fresh each time | Persistent via memory.md |
| MCP server setup | Manual, technical | One-click install |
Installation
- Open Claude Desktop β Customize tab (or Settings β Extensions)
- Find Desktop Commander in the list
- Click Install
- Restart Claude Desktop when prompted
Takes under 2 minutes. No technical knowledge required.
Set Up Your Memory File
Once Desktop Commander is installed, create a persistent memory file so Cowork remembers your context between sessions:
- Create
~/Cowork-Workspace/memory.md - Add your recurring context, hereβs a starting template:
# My Cowork Memory
## Business Context
- Business type: [your type β consulting, retail, trades, etc.]
- Primary file formats: [Word, Excel, PDF, etc.]
## Client Preferences
- Client Dupont: formal tone, PDF invoices preferred
- Client Martin: needs itemized quotes with separate labor/materials
## Things I Never Do
- Use exclamation marks in client emails
- Promise specific delivery dates without checking first
## Recurring Tasks
- Weekly: [what you compile or report each week]
- Monthly: [what you do at month end]
- Start future sessions with: βRead ~/Cowork-Workspace/memory.md first. Then [your actual request]β
Why This Matters
Without a memory file, youβd repeat preferences and context at the start of every session. With it, Cowork picks up where you left off, knowing your clients, your style, and your recurring work patterns.
Note: Desktop Commander is available via the Customize tab in Claude Desktop. If you donβt see it immediately, check Settings β Extensions.
Step 9: Enable Computer Use (macOS, Optional)
Computer Use lets Claude control your desktop directly β open apps, click, fill forms, navigate the browser β without any custom integration. Available on Pro and Max plans, macOS only.
Note: Computer Use is available on Pro and Max plans. Use it for supervised tasks where you can review each action.
9.1 Enable in Claude Desktop
- Open Claude Desktop
- Go to Settings β Features β Computer Use
- Toggle it on
- Confirm the permission dialog
9.2 Grant macOS System Permissions
Claude needs two system permissions to control your screen:
Screen Recording (required to see your screen):
- Open System Settings β Privacy & Security β Screen Recording
- Find Claude Desktop in the list
- Toggle it on (if it doesnβt appear, click
+and add it manually)
Accessibility (required to click and type):
- Open System Settings β Privacy & Security β Accessibility
- Find Claude Desktop in the list
- Toggle it on
9.3 (Optional) Pair Your Phone with Dispatch
To send tasks to your desktop from your phone while youβre away:
- Open Claude for iOS or Android
- In the Cowork thread, tap Pair Desktop
- Scan the QR code shown in your Claude Desktop app
- Your phone is now connected β send tasks remotely
Requirements: Mac must stay awake with Claude Desktop open. Claude uses the paired thread (Dispatch) to run tasks on your computer while youβre away.
Security Notes for Computer Use
- Claude requests explicit permission per task before accessing a new application
- Anthropic recommends not granting access to sensitive apps (banking, health, legal)
- Claude is trained to refuse: stock trading, saving sensitive credentials, scraping facial images
- Token cost is higher than standard Cowork: every action cycle requires a screenshot
Troubleshooting First Run
βCannot access folderβ
- Go to System Preferences β Security & Privacy β Files and Folders
- Find Claude Desktop
- Ensure your workspace folder is listed and enabled
βCowork option not visibleβ
Most common cause: Outdated app version.
- Verify your version β See Prerequisites above
-
If you donβt see βChat Cowork Codeβ at the top, update your app - After updating, check Settings β Features β ensure Cowork is enabled
- Restart the app
βPlan seems wrongβ
- Donβt approve the plan
- Say βStop. Let me clarify: [your clarification]β
- Cowork will revise its plan
βIncomplete resultsβ
- Check if Cowork showed any errors
- Try breaking the task into smaller steps
- Verify folder permissions
Next Steps
Youβre now ready to:
- Explore Capabilities β Learn what Cowork can do
- Review Security β Safe usage practices
- Try Workflows β Step-by-step tutorials
- Use Ready Prompts β Copy-paste templates
Quick Reference Card
| Action | How |
|---|---|
| Start Cowork | New conversation β Select Cowork mode |
| Grant access | Browse to ~/Cowork-Workspace/ when prompted |
| Review plan | Read each step before saying βproceedβ |
| Stop execution | Type βStopβ or close the conversation |
| Check results | Always verify output folder after tasks |
| *β Overview | Cowork Documentation | Capabilities β* |