Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

terabox-storage太盒存储

Agent Skill

terabox-storage 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,275

周安装

222

GitHub Stars

2

下载量

1,847
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:terabox-storage(太盒存储)
来源仓库:https://github.com/arthurpatten/terabox-storage
安装命令:
openclaw skills install terabox-storage
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install terabox-storage

简介

管理 TeraBox 云存储操作,包括登录、上传、下载、共享和传输。使用 terabox CLI 工具执行文件管理任务。

SKILL.md

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

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 @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:

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:

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

  1. Run terabox whoami to check login status; if not logged in, guide user to bash @skills/terabox-storage/scripts/login.sh
  2. Validate path legality (no ../, path must be within application sandbox)

Core Features

Upload

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

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)

# 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

# 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

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

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

Update CLI

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 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

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

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

87.79%
按下载量换算1,621

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills