1
0
Fork 0

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:
Kjell Tore Guttormsen 2026-03-26 10:04:05 +01:00
commit e8a5403f91
9 changed files with 553 additions and 73 deletions

View file

@ -0,0 +1,71 @@
# Example 12: Remote Control and Dispatch
Control your Claude Code session from your phone. This is
Anthropic's answer to OpenClaw's Telegram integration: manage
your AI agent from anywhere.
**OpenClaw equivalent:** Telegram, WhatsApp, or any of the
15+ messaging channels for sending commands remotely.
## Option A: Remote Control (/rc) for Claude Code
Works with the CLI. No Cowork needed.
### Setup
1. Start a Claude Code session in your terminal
2. Type `/rc` (short for `/remote-control`)
3. A URL and QR code appear
4. Scan the QR code with your phone or open the URL in any browser
5. You now have a full interactive session from your phone
### The prompt (from your phone)
```
Search the web for the latest Claude Code changelog entries,
summarize the 3 most important features, and save the summary
to changelog-latest.md in the project root.
```
### What happens
- Your phone sends the message to the active CC session
- Claude Code executes on your computer (terminal stays active)
- Results appear on both your phone and the terminal
- You can continue the conversation from either device
## Option B: Dispatch for Cowork
If you use Claude Cowork (desktop app), Dispatch lets you
assign tasks from the Claude mobile app.
### Setup
1. Open Claude Desktop app on Mac
2. Switch to Cowork mode
3. Go to Dispatch in settings
4. Scan QR code with Claude mobile app (iOS/Android)
5. Your phone is now paired to your desktop agent
### How it differs from /rc
| Feature | /rc (Claude Code) | Dispatch (Cowork) |
|---------|------------------|------------------|
| Interface | Terminal session | Desktop app |
| Requires | CLI | Cowork desktop app |
| Phone app | Any browser | Claude mobile app |
| Computer Use | No | Yes |
| Connected apps | Via MCP | Built-in (Slack, Google, Notion) |
## The OpenClaw comparison
OpenClaw lets you text your agent via Telegram, WhatsApp,
Discord, or 12+ other channels. The agent is always-on.
Claude Code /rc requires an active session. Dispatch requires
Cowork running on your Mac. Neither is truly "always-on" in
the OpenClaw sense, but /schedule (remote triggers) can start
sessions on demand from the web.
The gap is narrowing. For most "text my agent from my phone"
use cases, /rc or Dispatch gets the job done.