# Send Remote Disk Mount 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": "remote-disk-mount",
    "name": "Remote Disk Mount",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/Leochens/remote-disk-mount",
    "canonicalUrl": "https://clawhub.ai/Leochens/remote-disk-mount",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/remote-disk-mount",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remote-disk-mount",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "remote-disk-mount",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T05:35:21.287Z",
      "expiresAt": "2026-05-08T05:35:21.287Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remote-disk-mount",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remote-disk-mount",
        "contentDisposition": "attachment; filename=\"remote-disk-mount-0.4.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "remote-disk-mount"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/remote-disk-mount"
    },
    "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/remote-disk-mount",
    "downloadUrl": "https://openagent3.xyz/downloads/remote-disk-mount",
    "agentUrl": "https://openagent3.xyz/skills/remote-disk-mount/agent",
    "manifestUrl": "https://openagent3.xyz/skills/remote-disk-mount/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/remote-disk-mount/agent.md"
  }
}
```
## Documentation

### Remote Disk Mount

⚠️ Security Note: This skill is for Debian/Ubuntu Linux only. Do NOT use on other OS without adaptation.

### ⚠️ Security Guidelines

Never pass passwords on command line — Use credential files or interactive prompts instead
Confirm with user before running sudo commands — Don't auto-execute privileged operations
Use SSH keys for SFTP — Avoid password-based authentication
Mount untrusted storage with caution — It can expose local files

### Step 1: Collect Info (Ask User)

Ask the user for:

Protocol: SMB / FTP / SFTP / WebDAV?
Server IP/hostname: e.g., 192.168.1.100 or nas.example.com
Username: (for SMB/FTP/SFTP)
Password: (will be used interactively, never shown in commands)
Share name: (for SMB only, e.g., shared)
Mount point name: (optional, e.g., nas, backup)

💡 Tip: Ask one question at a time, wait for response. Don't assume any values.

### Step 2: Check Environment

Run this to check/install deps based on protocol:

# SMB
sudo apt install smbclient cifs-utils -y

# FTP
sudo apt install curlftpfs -y

# SFTP
sudo apt install sshfs -y

# WebDAV
sudo apt install cadaver davfs2 -y

### Step 3: Create Mount Point

mkdir -p ~/mount_<name>

### SMB/CIFS

Credential file method:

# 1. Create credential file
echo "username=$USERNAME" | sudo tee /root/.smbcredentials
echo "password=$PASSWORD" | sudo tee -a /root/.smbcredentials
sudo chmod 600 /root/.smbcredentials

# 2. Mount
sudo mount.cifs //SERVER_IP/share ~/mount_name -o credentials=/root/.smbcredentials,uid=1000,gid=1000

### FTP (curlftpfs)

Interactive password (recommended):

curlftpfs -o user=$USERNAME ftp://SERVER_IP/ ~/mount_name
# Password will be prompted interactively - never shown in command

### SFTP (SSHFS)

Key-based auth (recommended):

sshfs $USERNAME@SERVER_IP:/ ~/mount_name -o uid=1000,gid=1000
# Use -o identityfile=~/.ssh/id_rsa for key-based auth

### WebDAV

sudo mount -t davfs http://SERVER_IP/webdav /mnt/webdav -o uid=1000,gid=1000
# Password prompted interactively

### Unmount

sudo umount /mountpoint
# or for FUSE
sudo fusermount -u /mountpoint

### Checklist Before Running

Confirm OS is Debian/Ubuntu
 Get user confirmation before sudo commands
 Verify remote server is trusted
 Use SSH keys for SFTP instead of passwords
 Delete credential files after use if sensitive
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Leochens
- Version: 0.4.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T05:35:21.287Z
- Expires at: 2026-05-08T05:35:21.287Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/remote-disk-mount)
- [Send to Agent page](https://openagent3.xyz/skills/remote-disk-mount/agent)
- [JSON manifest](https://openagent3.xyz/skills/remote-disk-mount/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/remote-disk-mount/agent.md)
- [Download page](https://openagent3.xyz/downloads/remote-disk-mount)