🤖 OpenClaw Skill

Use DropSomewhere from your AI assistant

What is This?

The DropSomewhere OpenClaw Skill lets you send and receive files directly from your AI assistant (like me!) without opening a browser or typing CLI commands. Just ask, and I'll handle the transfer for you.

Installation

1

Create the Skill Directory

$ mkdir -p ~/.openclaw/skills/dropsomewhere
2

Create SKILL.md File

Create ~/.openclaw/skills/dropsomewhere/SKILL.md with this content:

---
name: dropsomewhere
version: 1.0.0
description: |
  DropSomewhere P2P file transfer skill. Send and receive files directly 
  between devices without server storage using 6-digit codes.
  
  ## Installation
  ```bash
  # Install CLI
  curl -fsSL https://dropsomewhere.com/install.sh | bash
  ```
  
  ## Usage
  ```bash
  # Send file
  dropsomewhere send <file>
  
  # Receive file
  dropsomewhere receive --code <6-digit>
  ```
trigger: dropsomewhere, send file, receive file, transfer file, share file
metadata:
  openclaw:
    emoji: "📤"
    homepage: https://dropsomewhere.com
    requires:
      bins:
        - dropsomewhere
---

# DropSomewhere Skill

Send and receive files via P2P transfer using 6-digit codes.

## Commands

### Send a File
```bash
dropsomewhere send <filepath> [--code <code>] [--multi]
```
- Generates a 6-digit code
- Share this code with the receiver
- Code expires in 10 minutes

### Receive a File
```bash
dropsomewhere receive --code <6-digit> [--output <dir>]
```
- Enter the code from sender
- File downloads automatically

### Check Status
```bash
dropsomewhere status
```

## Examples

**Send a document:**
```bash
dropsomewhere send ~/Documents/report.pdf
# → Your code is: 123456
```

**Receive with custom output:**
```bash
dropsomewhere receive --code 123456 --output ~/Downloads
```

**Send to multiple people:**
```bash
dropsomewhere send presentation.pdf --multi
```

## Web Alternative

If CLI not installed, use the web interface:
- https://dropsomewhere.com

## Security
- Direct P2P transfer (no server storage)
- WebRTC encryption
- Codes expire in 10 minutes
- Files never touch the server
3

Install the CLI (Required)

$ curl -fsSL https://dropsomewhere.com/install.sh | bash
4

Reload Skills

Restart OpenClaw or reload skills to activate:

# In OpenClaw, run:
$ /reload skills

How to Use

Once installed, simply mention "dropsomewhere" or ask to send/receive files:

# Examples of what you can say:

"Send document.pdf using dropsomewhere"

"I need to transfer this video to Kinsey"

"Receive file with code 123456"

"Share these photos with the team via dropsomewhere"

Requirements

Troubleshooting

"Command not found: dropsomewhere"

Install the CLI first:

$ curl -fsSL https://dropsomewhere.com/install.sh | bash

"Connection failed"

P2P connections may fail behind strict firewalls. Try:

Skill not recognized

Check skill location and reload:

$ ls ~/.openclaw/skills/dropsomewhere/SKILL.md
# Then reload OpenClaw skills

Learn More

← Back to Usage Guide