← All skills
Tencent SkillHub · Communication & Collaboration

Remote Disk Mount

远程磁盘挂载工具,支持 SMB/CIFS、FTP、SFTP、WebDAV 协议挂载远程共享到本地目录。当用户需要:(1) 挂载 Windows/Samba 共享,(2) 挂载 FTP/SFTP 服务器,(3) 挂载 WebDAV 存储,(4) 将远程存储映射为本地磁盘使用时触发此技能。

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

远程磁盘挂载工具,支持 SMB/CIFS、FTP、SFTP、WebDAV 协议挂载远程共享到本地目录。当用户需要:(1) 挂载 Windows/Samba 共享,(2) 挂载 FTP/SFTP 服务器,(3) 挂载 WebDAV 存储,(4) 将远程存储映射为本地磁盘使用时触发此技能。

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.4.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

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

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc