TeraBox云存储

terabox-storage

by arthurpatten

Manage TeraBox cloud storage operations including login, upload, download, share, and transfer. Use the terabox CLI tool for file management tasks.

3.9k效率与工作流未扫描2026年3月23日

安装

claude skill add --url github.com/openclaw/skills/tree/main/skills/arthurpatten/terabox-storage

文档

TeraBox Storage Skill

TeraBox cloud storage management tool supporting upload, download, transfer, share, and file listing. All operations are restricted to the application sandbox directory.

Compatible with: OpenClaw, Claude Code, DuClaw, Ducc, etc.

Beta stage - see reference/notes.md for important notes


Installation

If the terabox CLI tool is not installed, run the installation script:

bash
bash @skills/terabox-storage/scripts/install.sh

The script will:

  1. Detect your OS and architecture
  2. Download the terabox binary from CDN
  3. Install it to ~/.local/bin/terabox

Make sure ~/.local/bin is in your PATH:

bash
export PATH="$HOME/.local/bin:$PATH"

Trigger Rules

Execute only when BOTH conditions are met:

  1. User explicitly mentions TeraBox - message contains "TeraBox", "terabox", "Tera", etc.
  2. Clear operation intent - can determine one of: upload, download, transfer, share, list, login, logout

Do NOT execute any terabox commands if conditions are not met.


Confirmation Rules

Must confirm with user first in these scenarios:

ScenarioDescription
Path unclearUser did not specify file path or target path
Remote path existsUpload target has same-name file - ask: overwrite/rename/cancel
Local path existsDownload target has same-name file - ask: overwrite/rename/cancel
Ambiguous intent"process files" → confirm upload or download; "sync" → confirm direction; "backup" → confirm direction

Confirmation format:

code
Operation: [upload/download/share/list]
Source: [path]
Destination: [path]
Confirm execution?

Pre-execution Checks

Before every terabox command:

  1. Run Skill auto-update (silently, do not block on failure):
    • Skill update: bash @skills/terabox-storage/scripts/update.sh --yes
    • CLI auto-update is handled automatically by the CLI itself (built-in update check on every command execution)
    • If update fails, continue with the user's requested operation
  2. Run terabox whoami to check login status; if not logged in, guide user to bash @skills/terabox-storage/scripts/login.sh
  3. Validate path legality (no ../, path must be within application sandbox)

Core Features

Upload

bash
terabox upload <local_path> [remote_path]
terabox upload ./file.txt              # Upload to root directory
terabox upload ./file.txt docs/        # Upload to docs directory
terabox upload ./file.txt --progress   # Show upload progress
terabox upload ./my-dir/ backup/       # Upload entire directory

Supports single file and directory upload. When uploading a directory, all files are recursively uploaded.

Steps: Confirm local path exists → Confirm remote path → Use terabox ls to check if remote exists → Execute upload

Download

bash
terabox download <remote_path> [local_path]
terabox download report.pdf            # Download to current directory
terabox download report.pdf ./saved/   # Download to specified directory
terabox download report.pdf --progress # Show download progress
terabox download docs/ ./local-docs/   # Download entire directory

Supports single file and directory download. When downloading a directory, all files are recursively downloaded.

Steps: Use terabox ls to confirm cloud path exists → Confirm local path → Check if local exists → Execute download

Transfer (Save shared files to your cloud storage)

bash
# Basic usage
terabox share-save <share_url> --pwd <password> [--path <dest_path>]

# Specify save directory
terabox share-save "https://terabox.com/s/1xxxxx" --pwd abcd --path my-folder/

# Transfer specific files by ID
terabox share-save "https://terabox.com/s/1xxxxx" --pwd abcd --fsid 12345,12346

Steps: Validate link format → Confirm password exists → Confirm target directory → Execute transfer

Share Operations

bash
# View share details
terabox share-info <share_url>

# List shared files
terabox share-list <share_url> --pwd <password>
terabox share-list <share_url> --pwd <password> --by name --order asc  # Sort by name
terabox share-list <share_url> --pwd <password> --by size              # Sort by size
terabox share-list <share_url> --pwd <password> --by time -p 2        # Sort by time, page 2

# Download shared files directly
terabox share-download <share_url> [local_path] --pwd <password>
terabox share-download <share_url> --pwd <password> --fsid 12345  # Download specific file

# Create share link
terabox share-create <path>...                    # Create share with auto-generated password
terabox share-create file.txt --pwd abcd          # Create share with custom password
terabox share-create file.txt --period 7          # Create share valid for 7 days
terabox share-create file.txt --public            # Create public share (no password)

File Operations

bash
terabox ls [directory]                 # List files
terabox ls -l [directory]              # List files with details
terabox ls --order name                # List sorted by name
terabox ls --order size --asc          # List sorted by size ascending
terabox search <keyword>               # Search files
terabox search <keyword> --order name  # Search with sorting
terabox info <file_path>               # Get file details
terabox info <file_path> --dlink       # Get file details with download link
terabox mv <source> <destination>      # Move file
terabox cp <source> <destination>      # Copy file
terabox rename <path> <new_name>       # Rename file

User Information

bash
terabox uinfo                          # Get user info
terabox quota                          # Query storage quota

Update CLI

bash
terabox update                         # Check and update CLI
terabox update check                   # Check for updates only
terabox update apply                   # Apply pending update
terabox update rollback                # Rollback to previous version
terabox update list                    # List installed versions

The CLI also checks for updates automatically on every command execution. Use --no-check-update global flag to disable this behavior.

Login

Must use the login script:

bash
bash scripts/login.sh

Requirements:

  • Must use @skills/terabox-storage/scripts/login.sh script
  • Do NOT use terabox login directly (even in GUI environments)

The login script includes complete security disclaimers and authorization flow to ensure informed user consent.

Logout

bash
terabox logout

Path Rules

All remote paths are relative to the application sandbox directory /From:Other Applications/app-name/.

ScenarioRuleExample
In commandsUse relative pathsterabox upload ./f.txt docs/f.txt
Display to userUse full paths"Uploaded to: /From:Other Applications/app/docs/f.txt"

Prohibited:

  • Paths containing .. or ~
  • Paths outside the application sandbox

Reference Documentation

See the reference directory for detailed information (consult when encountering issues):

DocumentWhen to Consult
terabox-commands.mdNeed complete command parameters, options, JSON output formats
authentication.mdLogin authentication flow details, config file locations, Token management
examples.mdNeed more usage examples
troubleshooting.mdEncountering errors that need diagnosis
notes.mdBeta stage important notes

相关 Skills

技能工坊

by anthropics

Universal
热门

覆盖 Skill 从创建到迭代优化全流程:起草能力、补测试提示、跑评测与基准方差分析,并持续改写内容和描述,提升效果与触发准确率。

技能工坊把技能从创建、迭代到评测串成闭环,方差分析加描述优化,特别适合把触发准确率打磨得更稳。

效率与工作流
未扫描111.8k

表格处理

by anthropics

Universal
热门

围绕 .xlsx、.xlsm、.csv、.tsv 做读写、修复、清洗、格式整理、公式计算与格式转换,适合修改现有表格、生成新报表或把杂乱数据整理成交付级电子表格。

做 Excel/CSV 相关任务很省心,能直接读写、修复、清洗和格式转换,尤其擅长把乱七八糟的表格整理成交付级文件。

效率与工作流
未扫描111.8k

Word文档

by anthropics

Universal
热门

覆盖Word/.docx文档的创建、读取、编辑与重排,适合生成报告、备忘录、信函和模板,也能处理目录、页眉页脚、页码、图片替换、查找替换、修订批注及内容提取整理。

搞定 .docx 的创建、改写与精排版,目录、批量替换、批注修订和图片更新都能自动化,做正式文档尤其省心。

效率与工作流
未扫描111.8k

相关 MCP 服务

文件系统

编辑精选

by Anthropic

热门

Filesystem 是 MCP 官方参考服务器,让 LLM 安全读写本地文件系统。

这个服务器解决了让 Claude 直接操作本地文件的痛点,比如自动整理文档或生成代码文件。适合需要自动化文件处理的开发者,但注意它只是参考实现,生产环境需自行加固安全。

效率与工作流
83.1k

by wonderwhy-er

热门

Desktop Commander 是让 AI 直接执行终端命令、管理文件和进程的 MCP 服务器。

这工具解决了 AI 无法直接操作本地环境的痛点,适合需要自动化脚本调试或文件批量处理的开发者。它能让你用自然语言指挥终端,但权限控制需谨慎,毕竟让 AI 执行 rm -rf 可不是闹着玩的。

效率与工作流
5.9k

EdgarTools

编辑精选

by dgunning

热门

EdgarTools 是无需 API 密钥即可解析 SEC EDGAR 财报的开源 Python 库。

这个工具解决了金融数据获取的痛点——直接让 AI 读取结构化财报,比如让 Claude 分析苹果的 10-K 文件。适合量化分析师或金融开发者快速构建数据管道。但注意,它依赖 SEC 网站稳定性,高峰期可能延迟。

效率与工作流
2.0k

评论