feat: add Computer Use, Remote Control, Auto Mode, and Cowork integration
Major update based on Anthropic's March 24, 2026 releases: - feature-map.md: expanded from 20 to 22 capabilities, gaps reduced from 2 to 1 (only Canvas/A2UI remains) - examples/11-computer-use: desktop control via screenshots and clicks - examples/12-remote-control: /rc and Dispatch for phone control - examples/13-auto-mode: AI safety classifier for autonomous execution - cowork-integration/: how Code + Cowork + Dispatch together replicate OpenClaw's full feature set - security/auto-mode-explained.md: deep-dive on the new permission mode - Updated README with broader ecosystem table and revised scores Score: 12 full match (55%), 9 different approach (41%), 1 gap (4%) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
2491f5c732
commit
e8a5403f91
9 changed files with 553 additions and 73 deletions
105
cowork-integration/README.md
Normal file
105
cowork-integration/README.md
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
# Cowork Integration: The Full OpenClaw Alternative
|
||||
|
||||
Claude Code alone covers 55% of OpenClaw features with a full
|
||||
match and 41% with a different approach. But Claude Code is just
|
||||
one product in Anthropic's ecosystem. Together, Claude Code +
|
||||
Cowork + Dispatch get you closer to 95% of what OpenClaw does.
|
||||
|
||||
## The ecosystem
|
||||
|
||||
```
|
||||
┌─────────────────────┐
|
||||
│ Your Phone │
|
||||
│ (Dispatch app) │
|
||||
└────────┬────────────┘
|
||||
│ assigns tasks
|
||||
┌────────▼────────────┐
|
||||
│ Your Mac │
|
||||
│ │
|
||||
│ ┌───────────────┐ │
|
||||
│ │ Claude Cowork │ │ ← Desktop agent, computer use,
|
||||
│ │ (Desktop app) │ │ connected apps, scheduled tasks
|
||||
│ └───────────────┘ │
|
||||
│ │
|
||||
│ ┌───────────────┐ │
|
||||
│ │ Claude Code │ │ ← Developer agent, terminal,
|
||||
│ │ (CLI/IDE) │ │ plugins, hooks, agents, MCP
|
||||
│ └───────────────┘ │
|
||||
│ │
|
||||
└─────────────────────┘
|
||||
│
|
||||
┌────────▼────────────┐
|
||||
│ VPS / Server │
|
||||
│ (Headless CC) │ ← Always-on, cron, /schedule
|
||||
└─────────────────────┘
|
||||
```
|
||||
|
||||
## Which product for which use case
|
||||
|
||||
| Use case | Best tool | Why |
|
||||
|----------|-----------|-----|
|
||||
| Write code, manage repos | Claude Code (CLI) | Full terminal access, hooks, plugins |
|
||||
| Control desktop apps (Photoshop, Excel) | Cowork (Computer Use) | Screen control, native app access |
|
||||
| Send tasks from phone | Dispatch | Mobile-first, paired to desktop |
|
||||
| Continue CC session remotely | /rc (Remote Control) | Works with CLI sessions |
|
||||
| Run agent 24/7 on server | Headless CC on VPS | No display needed |
|
||||
| Scheduled autonomous tasks | /schedule or CronCreate | Triggers from web or crontab |
|
||||
| Connect to Slack, Google, Notion | Cowork connectors | Built-in, no config |
|
||||
| Connect to any API | Claude Code + MCP | Flexible, developer-controlled |
|
||||
|
||||
## Can you build an OpenClaw replacement with this?
|
||||
|
||||
Mostly, yes. Here is how each OpenClaw selling point maps:
|
||||
|
||||
### "Runs 24/7 on your hardware"
|
||||
- **Cowork** with "keep computer awake" on a Mac Mini
|
||||
- **Headless CC** on a VPS ($5/month server)
|
||||
- **Both** require internet for Anthropic API calls (same as
|
||||
OpenClaw when using cloud models)
|
||||
|
||||
### "Control it from Telegram/WhatsApp"
|
||||
- **Dispatch** from Claude mobile app (closest match)
|
||||
- **/rc** from any browser on your phone
|
||||
- **Telegram** via Claude Code Channels (v2.1.80+)
|
||||
- Gap: no WhatsApp, Discord, Signal, iMessage native support
|
||||
(OpenClaw has 15+ channels)
|
||||
|
||||
### "It manages files, emails, calendars, browsers"
|
||||
- **Cowork** has Slack, Google Workspace, Notion connectors
|
||||
- **Claude Code** has file management + Playwright MCP for browser
|
||||
- **Computer Use** handles anything with a GUI
|
||||
- Gap: no native email/calendar integration in CC CLI (use MCP)
|
||||
|
||||
### "It remembers everything about you"
|
||||
- **CLAUDE.md** hierarchy + auto-memory for CC
|
||||
- **Cowork** has its own context/memory system
|
||||
- Gap: no vector search. OpenClaw's SQLite-vec/LanceDB memory
|
||||
is more sophisticated for semantic recall
|
||||
|
||||
### "Open source, works with any LLM"
|
||||
- **Not replicable.** Claude Code only works with Claude models.
|
||||
This is a fundamental architectural difference. If model
|
||||
flexibility matters to you, OpenClaw is the better choice.
|
||||
|
||||
### "5,700+ community skills"
|
||||
- **2,300+** in Claude marketplace, growing fast
|
||||
- Claude Code skills + plugins are a younger but active ecosystem
|
||||
- You can write your own skills in minutes (see `.claude/skills/`)
|
||||
|
||||
## The honest assessment
|
||||
|
||||
If you are a developer who primarily wants an AI coding agent
|
||||
with deep terminal integration, hooks, plugins, and MCP: Claude
|
||||
Code is the better choice. It is more polished, more secure, and
|
||||
requires no self-hosting.
|
||||
|
||||
If you want a general-purpose life automation agent that runs 24/7
|
||||
across 15+ messaging channels with any LLM: OpenClaw is still the
|
||||
better choice. The ecosystem is larger and more flexible.
|
||||
|
||||
If you want both: run Claude Code for development work and
|
||||
OpenClaw for life automation. They do not conflict.
|
||||
|
||||
Ethan Mollick put it well: Anthropic's offering is "90% of
|
||||
everything I wanted from OpenClaw, but far less likely to post
|
||||
all my personal information on the internet."
|
||||
Loading…
Add table
Add a link
Reference in a new issue