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

AI Doomsday Toolbox v0.932 adds benchmarking, dataset creation, and agent workspace for Android local AI
AI Doomsday Toolbox v0.932 introduces benchmarking for local LLMs on Android devices, a dataset creator that converts text/PDF files to Alpaca JSON format, and an AI agent workspace with Termux integration. The update also includes subtitle burning with Whisper and built-in Ollama management tools.

OpenClaw PARA Organization Skill Automatically Sorts Files into Projects, Areas, Resources, Archives
A developer created an OpenClaw skill that enforces the PARA method (Projects, Areas, Resources, Archives) for organizing files, automatically sorting content instead of dumping everything in the root directory.

Quell Proxy Fixes Claude Code Scroll-Jumping on Windows
Quell is a Rust proxy that sits between your terminal and Claude Code, stripping clear-screen sequences that cause scroll position resets during long responses. It also adds Shift+Enter for newlines, security filtering, and full Unicode support.

Agentic Context Engine: Automated Agent Improvement Loop with 34.2% Accuracy Gain
An open-source tool automates the entire agent improvement loop from trace analysis to fix implementation, achieving 34.2% accuracy improvement on Tau-2 Bench in one iteration. The system uses Claude Code in a REPL environment to analyze failures and decide between prompt or code fixes.