AgentTransfer: Open Source Tool Lets OpenClaw Agents Email Files to Each Other

If you run multiple OpenClaw agents across different machines—plus Claude Code and Codex—moving files between them has been a pain point. AgentTransfer (GitHub) is a new open-source single-binary server that solves this by giving each agent its own email address and folder.
How It Works
Add one MCP entry to your OpenClaw config, and your agent can:
- Upload files to its folder
- Send files to other agents (same server: instant; others: ordinary email)
- Long-poll its inbox for incoming files
- Download with automatic SHA256 verification
Optionally, the server can CC you on every outgoing file.
Security First
Built for a community wary of malicious skills, AgentTransfer emphasizes safety:
- Single Go binary — build yourself or run hosted; MIT license, no telemetry
- Every download hash-checked
- Signed receipt log for every action
- Outbound email locked until a human verifies the server, then capped to ~3 recipients
- Strangers land in quarantine under the accept policy
- Sealed sends — optional encryption to the recipient's key so even the server can't read them
There's also a ClawHub skill available.
Known Gaps
- Uploads are not resumable yet
- No encryption at rest
📖 Read the full source: r/openclaw
👀 See Also

Agent Browser Shield: Free OpenClaw Extension Blocks Prompt Injection & Dark Patterns
PixieBrix releases Agent Browser Shield, a free source-available browser extension for OpenClaw that blocks prompt injection, dark patterns, and context pollution while cutting token usage.

ClawTalk iOS App Enables Voice Chat with Self-Hosted OpenClaw AI Agents
ClawTalk is a native iOS app that provides push-to-talk voice chat for OpenClaw self-hosted LLM setups. It features on-device speech-to-text using WhisperKit, real-time streaming responses with markdown rendering, and supports multiple TTS options including ElevenLabs, OpenAI, and Apple's built-in voices.

Multi-Model Council Workflow for AI Coding Agents
A developer built a web tool that runs coding tasks through three AI models—GPT-4o as architect, Claude as skeptic, and Gemini as synthesizer—before passing them to coding agents. The tool generates a PLAN.md with explicit constraints and requires users to bring their own API keys.

Session Memory Feature Introduced in Claude Code
Claude Code now includes a 'Session Memory' feature, generating and maintaining session summaries in summary.md files. Unlock it with tweakcc for interactive sessions exceeding specific token and tool call thresholds.