Install
openclaw skills install @alex-vy/perkoon-transferThe agent data layer. Perkoon moves files between agents and the physical world — agent to human, agent to agent, agent to pipeline. Small files get free cloud delivery — a durable link, fire-and-forget, no receiver needed. Larger files stream direct P2P over WebRTC, no size limit. Free. Encrypted. Unlimited. No accounts. CLI, MCP server, A2A protocol, browser automation — pick the interface that fits your runtime.
openclaw skills install @alex-vy/perkoon-transferFile transfer for humans and the things replacing them.
Your agent has compute, memory, and context. What it lacks is a jump gate to the physical world. Perkoon is that gate — engineered for autonomous machines from day one. Small files relay via free cloud delivery (durable link, fire-and-forget); larger files stream direct P2P over WebRTC.
Not "AI-ready" the way a gas station is gourmet-ready. Actually built for machines — JSON event streams, structured exit codes, MCP native tools, an A2A protocol endpoint, and a state machine that doesn't need a browser, a mouse, or a soul.
Four integration methods — pick the one that fits your runtime:
| Method | Best for | Install size |
|---|---|---|
| MCP Server | Coding agents (Claude Code, Cursor, Windsurf, VS Code Copilot) | ~8 MB |
| CLI | Agents with shell access | ~8 MB |
| A2A Protocol | Agents with HTTP but no shell (ChatGPT, web agents) | Zero — just POST |
| Browser Automation | Full UI control via Playwright/Puppeteer | ~200 MB (Chromium) |
Three supported flight paths:
Transfers are free, unlimited, and encrypted. Small files (within the free cloud allotment) upload to free cloud delivery: the CLI exits immediately with a durable share link (~48h) and nobody needs to stay online. Larger files stream direct P2P — both ends online is the only constraint. For sensitive files, always use --password — without it, anyone with the share link can download.
If your host supports MCP, this is the fastest path. Three native tools, zero shell commands.
Install: npx -y @perkoon/mcp@0.3.0 (stdio transport, pinned version)
Tools provided:
send_file — Send a file. Small files relay via free cloud delivery and return a durable link immediately (no receiver needed); larger files wait for a receiver. Optional mode: auto | relay | p2p.receive_file — Receive files from a session code. Saves to disk.check_session — Check if a session is active, expired, or not found.Configuration for common hosts:
{
"mcpServers": {
"perkoon": {
"command": "npx",
"args": ["-y", "@perkoon/mcp@0.3.0"]
}
}
}
.mcp.json in your projectclaude_desktop_config.jsonnpx -y @perkoon/mcp@0.3.0Once configured, just call the tools directly — no bash, no log polling, no background processes.
IMPORTANT: Use npx -y perkoon@0.5.7 (pinned version) to avoid dynamic fetching of unaudited code.
Before sending, confirm the file path and name with the user. Do not send files from sensitive directories without explicit user approval.
Replace /path/to/file with the actual file path:
rm -f /tmp/perkoon-send.log /tmp/perkoon-send.pid
npx -y perkoon@0.5.7 send /path/to/file --json --timeout 1800 > /tmp/perkoon-send.log 2>&1 &
echo $! > /tmp/perkoon-send.pid
# Wait for session code (up to 30s)
for i in $(seq 1 30); do
if grep -q session_created /tmp/perkoon-send.log 2>/dev/null; then
grep session_created /tmp/perkoon-send.log
break
fi
if grep -q '"event":"error"' /tmp/perkoon-send.log 2>/dev/null; then
echo "===SEND FAILED===" && cat /tmp/perkoon-send.log
break
fi
sleep 1
done
Output: {"event":"session_created","session_code":"K7MX4QPR9W2N","share_url":"https://perkoon.com/K7MX4QPR9W2N"}
Once session_created appears, share the URL with the user. Example: "Here's your file — open this link on any device to download it: https://perkoon.com/K7MX4QPR9W2N"
The receiver doesn't need to install anything. The link works in any browser.
For password-protected sends, add --password SECRET and share both the URL and password.
You MUST run this after sharing the link. Do NOT skip this step.
Fast path: if the log shows {"event":"relay_complete",...} the file went
via free cloud delivery — the process has already exited 0, the link is durable
(~48h), and no receiver needs to be online. Report success immediately; skip
the loop below. Force this mode with --relay (errors if unavailable) or
force P2P with --p2p.
for i in $(seq 1 360); do
if grep -qE 'relay_complete|transfer_complete' /tmp/perkoon-send.log 2>/dev/null; then
echo "===TRANSFER COMPLETE===" && grep -E 'relay_complete|transfer_complete' /tmp/perkoon-send.log
break
fi
if grep -q '"event":"error"' /tmp/perkoon-send.log 2>/dev/null; then
echo "===TRANSFER FAILED===" && grep error /tmp/perkoon-send.log
break
fi
if [ "$((i % 30))" -eq 0 ]; then
grep progress /tmp/perkoon-send.log 2>/dev/null | tail -1
fi
sleep 5
done
===TRANSFER COMPLETE=== → Tell the user: "File sent successfully!" Include speed and duration from the JSON.===TRANSFER FAILED=== → Tell the user what went wrong.When another agent creates a session via A2A and gives you a session code + sender key:
rm -f /tmp/perkoon-send.log /tmp/perkoon-send.pid
npx -y perkoon@0.5.7 send /path/to/file --session CODE --sender-key KEY --json --timeout 1800 > /tmp/perkoon-send.log 2>&1 &
echo $! > /tmp/perkoon-send.pid
Then monitor with the same Step 2 above. This joins an existing session as sender instead of creating a new one. The receiving agent runs npx -y perkoon@0.5.7 receive CODE --json on their end.
Replace CODE with the 12-character session code:
rm -f /tmp/perkoon-recv.log /tmp/perkoon-recv.pid
npx -y perkoon@0.5.7 receive CODE --json --overwrite --output /home/openclaw/.openclaw/workspace/received/ > /tmp/perkoon-recv.log 2>&1 &
echo $! > /tmp/perkoon-recv.pid
for i in $(seq 1 360); do
if grep -q transfer_complete /tmp/perkoon-recv.log 2>/dev/null; then
echo "===TRANSFER COMPLETE===" && grep transfer_complete /tmp/perkoon-recv.log
break
fi
if grep -q '"event":"error"' /tmp/perkoon-recv.log 2>/dev/null; then
echo "===TRANSFER FAILED===" && grep error /tmp/perkoon-recv.log
break
fi
sleep 5
done
For password-protected sessions, add --password SECRET.
===TRANSFER COMPLETE=== → Tell the user: "File received!" and the save path.===TRANSFER FAILED=== → Tell the user what went wrong.Files are saved to /home/openclaw/.openclaw/workspace/received/.
Stream a received file directly into another process — no disk write:
npx -y perkoon@0.5.7 receive CODE --output - > /path/to/destination
If you can make HTTP requests but can't run shell commands, use the A2A endpoint directly.
Endpoint: POST https://perkoon.com/a2a
Protocol: JSON-RPC 2.0
Agent Card: https://perkoon.com/.well-known/agent.json
{
"jsonrpc": "2.0",
"method": "message/send",
"id": "1",
"params": {
"message": {
"parts": [{ "type": "data", "data": { "skill": "describe" } }]
}
}
}
{
"jsonrpc": "2.0",
"method": "message/send",
"id": "1",
"params": {
"message": {
"parts": [{
"type": "data",
"data": {
"skill": "send-files",
"name": "quarterly-report"
}
}]
}
}
}
Returns sender_url (for browser upload) + CLI commands + sender_key for A2A sender joining.
If you have shell access, run the CLI command from the response. If not, share the sender_url with your user — they open it in any browser to upload.
{
"jsonrpc": "2.0",
"method": "message/send",
"id": "1",
"params": {
"message": {
"parts": [{
"type": "data",
"data": {
"skill": "receive-files",
"session_code": "K7MX4QPR9W2N"
}
}]
}
}
}
{
"jsonrpc": "2.0",
"method": "message/send",
"id": "1",
"params": {
"message": {
"parts": [{
"type": "data",
"data": {
"skill": "session-status",
"session_code": "K7MX4QPR9W2N"
}
}]
}
}
}
Include clientCapabilities in your DataPart to get optimized instructions:
{
"type": "data",
"data": {
"skill": "send-files",
"clientCapabilities": { "shellAccess": true, "nodeJs": true }
}
}
Agents declaring shell access get CLI commands. Web-only agents get browser URLs.
For agents that need full browser UI control. Heavier than CLI but gives visual verification.
Ready-to-run scripts (requires npm install playwright):
curl https://perkoon.com/perkoon_send.mjs > send.mjs && node send.mjs /path/to/file.zip
curl https://perkoon.com/perkoon_receive.mjs > receive.mjs && node receive.mjs SESSION_CODE ./output
https://perkoon.com/create, accept TOS, click StartlocalStorage.setItem('perkoon_skip_confirm_direct-confirm', 'true') and localStorage.setItem('perkoon_skip_confirm_staged-confirm', 'true')page.setInputFiles('[data-testid="file-input"]', filePath)page.waitForFunction(() => window.__perkoon?.participants?.length >= 2, null, { timeout: 300000 })[data-testid="send-transfer"]page.waitForFunction(() => window.__perkoon?.transfer?.status === 'complete', null, { timeout: 600000 })page.on('download', d => downloads.push(d))https://perkoon.com/{SESSION_CODE}?agent=true[data-testid="transfer-accept"], then click it. This is the RECEIVE-side accept in the "Incoming Transfer" dialog (it appears once the sender's offer arrives) — distinct from the sender's session-creation gate [data-testid="tos-accept"]. Reject is [data-testid="transfer-reject"]. ?agent=true picks the sink but does NOT auto-accept.page.waitForFunction(() => window.__perkoon?.transfer?.status === 'complete', null, { timeout: 600000 })await download.saveAs('./received/' + basename(download.suggestedFilename()))| Flag | Description |
|---|---|
--json | Machine-readable JSON events (always use for automation) |
--relay | Force free cloud delivery (fails if unavailable). Default is auto: relay when granted and the file fits, else P2P |
--p2p / --wait | Force direct P2P streaming (process stays alive) |
--session <code> | Join an existing session as sender (A2A agent-to-agent) |
--sender-key <key> | Auth key for --session (provided by session creator) |
--password <pw> | Password-protect the session (transfer is WebRTC/DTLS-encrypted regardless) |
--timeout <sec> | Peer wait time in P2P mode (default: 300, use 1800 for sends) |
--output <dir> | Save directory (default: ./received) |
--output - | Stream to stdout (no disk write) |
--overwrite | Replace existing files |
--quiet | Suppress human-readable output |
Events appear in order on stdout when using --json. The sequence differs by direction — parse the set that matches the command you ran.
send:
| Event | Meaning | Key fields |
|---|---|---|
file_ready | File queued for send | name, size |
session_created | Ready — share the link now | session_code, share_url |
mode | Delivery mode chosen (relay path only) | mode |
relay_complete | Cloud upload done — link durable, process exits 0 | session_code, share_url, expires_at, duration_ms |
waiting_for_receiver | Session live, no peer yet (P2P path) | |
receiver_connected | Peer joined | |
transfer_accepted | Receiver accepted the transfer | |
webrtc_connected | Direct P2P link established | |
progress | Transfer in progress | percent, speed, eta |
transfer_complete | Done | duration_ms, speed |
receive:
| Event | Meaning | Key fields |
|---|---|---|
session_joined | Joined the session | |
sender_found | Sender located | |
webrtc_connected | Direct P2P link established | |
receiving_file | Incoming file | name, size |
progress | Transfer in progress | percent, speed, eta |
transfer_complete | Done | files, duration_ms, speed |
Either direction emits error (message, exit_code) on failure.
| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | Bad arguments |
| 2 | File not found |
| 3 | Network/session error |
| 4 | Wrong password |
| 5 | Timeout — no peer joined (P2P mode only; relay sends never wait) |
Session endpoints are rate-limited per IP, sliding 60-second window:
| Action | Limit |
|---|---|
| Create a session (send) | 10 / min |
| Join a session (receive) | 30 / min |
| Status checks | 20 / min |
Exceeding a limit returns HTTP 429 with a Retry-After value (seconds). On /a2a, every JSON-RPC POST counts against the create budget (10/min), regardless of skill.
How this looks to you: the CLI surfaces a 429 as a fast exit_code: 3 (network/session error) before a session_created event. If a send fails fast with exit 3 after several rapid sessions, treat it as rate-limiting: back off ~30s and retry, don't hammer.
--json for parseable outputsession_created appears, share the URL with the user--timeout 1800 for sends (30 min for the human to open the link)--overwrite for receivesrelay_complete (cloud), transfer_complete (P2P), or error — then tell the user the resultrelay_complete)npx -y perkoon@0.5.7 — never use @latest| URL | What it is |
|---|---|
https://perkoon.com/.well-known/agent.json | A2A agent card (machine-readable capabilities) |
https://perkoon.com/llms.txt | Full agent integration guide |
https://perkoon.com/automate | Human-readable automation docs |
https://www.npmjs.com/package/@perkoon/mcp | MCP server package |
https://www.npmjs.com/package/perkoon | CLI package |