# Send Claw2claw Filetransfer to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "claw2claw-filetransfer-v2",
    "name": "Claw2claw Filetransfer",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/Christopher-Schulze/claw2claw-filetransfer-v2",
    "canonicalUrl": "https://clawhub.ai/Christopher-Schulze/claw2claw-filetransfer-v2",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/claw2claw-filetransfer-v2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw2claw-filetransfer-v2",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/commands.md",
      "references/examples.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/claw2claw-filetransfer-v2"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/claw2claw-filetransfer-v2",
    "downloadUrl": "https://openagent3.xyz/downloads/claw2claw-filetransfer-v2",
    "agentUrl": "https://openagent3.xyz/skills/claw2claw-filetransfer-v2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claw2claw-filetransfer-v2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claw2claw-filetransfer-v2/agent.md"
  }
}
```
## Documentation

### claw2claw-filetransfer

File transfer so smooth, even a lobster can do it. 🦞

Send files between OpenClaw agents without the drama. rsync over SSH - delta transfers, compression, progress bars. Linux, macOS, Windows - we got you covered.

### When to Trigger This Skill

Use this skill when user wants to:

Transfer files between two OpenClaw agents
Sync project directories bidirectionally
Backup files to a remote agent
Pull logs/data from remote agent
Set up SSH connection between agents
Move bits from A to B without crying

### Quick Start

# 1. Set up remote agent (one-time)
claw2claw setup 192.168.1.100 --user root

# 2. Send files like a pro
claw2claw send /backup.tar.gz

# 3. Get files back
claw2claw get /remote/logs.txt

# 4. Sync entire directories
claw2claw sync-to-remote ./my-project/

### Commands

CommandDescriptionsetup <host>Configure remote agentsend <file>Upload to remoteget <file>Download from remotesync-to-remote <dir>Push directory to remotesync-from-remote <dir>Pull directory from remotels <path>List remote filesstatusShow connection status

### Options

OptionDescription-n, --dry-runPreview without executing--compressEnable compression (default)--no-compressDisable compression--debugEnable debug output

### Environment Variables

REMOTE_HOST="192.168.1.100"   # Remote IP/hostname
REMOTE_USER="root"            # SSH user
REMOTE_PORT="22"              # SSH port
SSH_KEY="/path/to/key"        # Custom SSH key
RSYNC_BWLIMIT=1000           # KB/s limit

### Features

Delta transfers - Only sends changed bytes
Compression - Gzip on the wire
Progress bars - Watch it go brrr
Bidirectional - Push or pull
Cross-platform - Linux, macOS, Windows
Key-based auth - No passwords

### Use Cases

Backup server to local
Sync code between agents
Pull logs for analysis
Deploy static sites
Share datasets

### Linux

# Pre-installed on most distros
sudo apt install rsync

### macOS

brew install rsync

### Windows

# Option A: Git Bash (recommended)
# Download from https://git-scm.com

# Option B: cwrsync
# Download from https://www.itefix.net/cwrsync

# Option C: WSL
wsl --install

### Git Bash / MSYS2

Uses Unix-style paths: /c/Users/...
rsync usually pre-installed
Works out of the box

### Windows Command Prompt / PowerShell

Use full paths or forward slashes: C:/Users/...
Or use cwrsync

### WSL

Detected as Linux, works perfectly
Can communicate with Windows filesystem

### Cygwin

Install via Cygwin setup
Path: /cygdrive/c/Users/...

### Compression

# On (default) - for text files
claw2claw send /logs/*.log

# Off - for already compressed files
claw2claw send /backup.tar.gz --no-compress

### Bandwidth

# Limit to 500 KB/s
RSYNC_BWLIMIT=500 claw2claw send /huge-file.tar.gz

### Large Files

# rsync auto-resumes interrupted transfers
# Just run same command again
claw2claw send /huge-file.tar.gz

### Selective Sync

# Only sync specific patterns
# Use --include and --exclude in rsync manually
# Or sync specific subdirectories
claw2claw sync-to-remote ./src/

### Quick Test

claw2claw status

### Manual SSH Test

ssh -o ConnectTimeout=5 user@host "echo OK"

### Test File Transfer

# Small test file first
echo "test" > /tmp/test.txt
claw2claw send /tmp/test.txt /tmp/
claw2claw get /tmp/test.txt /tmp/
rm /tmp/test.txt

### "rsync: command not found"

# Linux
sudo apt install rsync

# macOS  
brew install rsync

# Windows
# Install Git Bash or cwrsync

### "Permission denied"

# Re-run setup to add SSH key
claw2claw setup <host> --user <user>

### "Connection timed out"

# Check host reachable
ping <host>

# Check port open
nc -zv <host> 22

### Daily Backup

claw2claw send /backups/daily-$(date +%Y%m%d).tar.gz /backups/

### Project Sync

# Morning
claw2claw sync-from-remote /workspace/project/

# Evening  
claw2claw sync-to-remote /workspace/project/

### Log Collection

claw2claw get /var/log/syslog ./logs/

### Security

SSH key-based auth only
Keys: ~/.ssh/ (mode 700)
Config: ~/.claw2claw.conf (mode 600)
No passwords in scripts

### Related Skills

Works well with:

blogwatcher - Sync RSS feeds between agents
github - Sync repositories after commits
playwright-scraper-skill - Transfer scraped data
Any skill that needs to share files

### Uninstall

rm /usr/local/bin/claw2claw
rm ~/.claw2claw.conf
rm -rf ~/.claw2claw/

Made with 🦞🦞

From Claws for Claws. Transfer files uncomplicated.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Christopher-Schulze
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/claw2claw-filetransfer-v2)
- [Send to Agent page](https://openagent3.xyz/skills/claw2claw-filetransfer-v2/agent)
- [JSON manifest](https://openagent3.xyz/skills/claw2claw-filetransfer-v2/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/claw2claw-filetransfer-v2/agent.md)
- [Download page](https://openagent3.xyz/downloads/claw2claw-filetransfer-v2)