Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
bytedance avatar

Byted Tos Workspace Netdrive

  • 35 installs
  • 411 repo stars
  • Updated August 4, 2026
  • bytedance/agentkit-samples

byted-tos-workspace-netdrive is a Claude skill that detects and manages TOS bucket mounts under the OpenClaw workspace and saves files to them.

About

This skill detects and manages network drives mounted under the OpenClaw workspace, which are TOS bucket mounts. A developer uses it to check for mounted drives, list available buckets, and save agent output files to persistent cloud storage. It reports file locations by bucket name and relative path rather than internal filesystem paths.

  • Detects TOS bucket mounts under the OpenClaw workspace
  • Saves agent output files to a mounted network drive
  • Reports results by bucket name and relative path, not internal FS paths

Byted Tos Workspace Netdrive by the numbers

  • 35 all-time installs (skills.sh)
  • Ranked #774 of 1,039 Cloud & Infrastructure skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

byted-tos-workspace-netdrive capabilities & compatibility

Free; requires a TOS bucket mounted in the OpenClaw workspace via arkClaw

Capabilities
storage management · mount detection · file persistence
Use cases
devops
Pricing
Free
From the docs

What byted-tos-workspace-netdrive says it does

检测并管理挂载在工作区 /root/.openclaw/workspace/ 下的网盘(TOS 存储桶挂载)。
SKILL.md
网盘通常挂载为 `/root/.openclaw/workspace/` 下的子目录。
SKILL.md
npx skills add https://github.com/bytedance/agentkit-samples --skill byted-tos-workspace-netdrive

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs35
repo stars411
Last updatedAugust 4, 2026
Repositorybytedance/agentkit-samples

What it does

Detect mounted TOS network drives in the OpenClaw workspace and save files to persistent cloud storage.

When should I use this skill?

You need to check for mounted network drives, save output to a TOS bucket mount, or list available workspace buckets.

What you get

Detects mounted TOS drives and saves files to them, reporting locations by bucket name and relative path.

By the numbers

  • Detects mounts under /root/.openclaw/workspace/
  • Uses 3 required binaries: df, grep, awk

Files

SKILL.mdMarkdownGitHub ↗

工作区网盘技能 (Workspace Netdrive Skill)

此技能帮助你检测和使用挂载在工作区内的网盘(TOS 存储桶挂载)。

何时使用

当用户要求执行以下操作时使用此技能:

  • "检查是否有挂载的网盘"
  • "把这个文件保存到网盘/TOS"
  • "将输出存储到云存储桶挂载"
  • "列出可用的存储桶"

检测逻辑

网盘通常挂载为 /root/.openclaw/workspace/ 下的子目录。 检测脚本使用 dfgrep 来检查该目录下的挂载点。

指令

1. 检测可用网盘

运行此脚本以列出所有已挂载的网盘路径和桶名称:

scripts/detect_mounts.sh

输出示例:

Detected network drives (Buckets):
Bucket: my-bucket (Path: /root/.openclaw/workspace/my-bucket)
Bucket: reports-bucket (Path: /root/.openclaw/workspace/reports-bucket)

如果未发现网盘,输出将是:No network drives mounted in workspace.

注意: 如果未检测到网盘,你必须提示用户在 arkClaw 界面菜单栏中配置网盘(配置TOS存储桶信息),然后才能继续。

2. 保存文件到网盘

一旦识别出有效的挂载路径(例如 /root/.openclaw/workspace/my-bucket),你可以直接将文件保存到该路径。

复制文件:

cp source_file.txt /root/.openclaw/workspace/my-bucket/folder/

直接写入网盘:

echo "内容" > /root/.openclaw/workspace/my-bucket/output.txt

3. 反馈

向用户反馈文件存储位置时,请勿使用内部文件系统路径(例如 /root/.openclaw/workspace/...)。 而应该反馈 桶名称 (Bucket Name)相对于桶的路径

反馈示例:

"文件已成功保存。
桶名: my-bucket
路径: folder/source_file.txt"

这种格式方便用户在外部系统中访问这些文件。

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.