king-bcolor
dsh-aliyundrive-plugin
No description
- Stars
- 0
- Language
- JavaScript
- Created
- Aug 16, 2026
- Updated
- Aug 16, 2026
Introduction
dsh-aliyundrive-plugin
中文文档:README.zh-CN.md
A DeepSeek Harness plugin that wraps the aliyunpan Alibaba Cloud Drive CLI as model-callable tools and a built-in web UI tab.
What it is
dsh-aliyundrive-plugin exposes Alibaba Cloud Drive operations to DSH agents: account status, drive switching, directory browsing, file management, upload/download with progress, sharing, albums, and sync backup — through structured tools.
Features
- Account: login guidance, current user, account list.
- Drive: switch backup/resource drive, quota.
- Files: ls/ll, cd, pwd, mkdir, mv, cp, rename, rm (confirm-gated).
- Transfer: upload/download with concurrency, retry, regex exclusions, progress.
- Share: create shares and rapid-transfer links (
share set; list/cancel are not exposed by aliyunpan v0.3.x). - Albums: list, show, batch download.
- Sync: upload/download modes with exclusive/increment policies.
- Long transfers run in background: poll with
aliyunpan_task_status, list withaliyunpan_task_list, stop withaliyunpan_task_stop. - Web UI: an
阿里云盘conversation tab exposes every tool as a dynamic form with quick account/quota/pwd actions, JSON results, and a live task panel. A standalone page is also available at/aliyundriveafter the web profile starts. - Dangerous operations require explicit confirmation.
Use cases
- Ask the agent to list files in a cloud directory.
- Upload a local folder to Alibaba Cloud Drive.
- Download files with progress and retry.
- Manage shares and albums.
- Set up incremental sync between local and cloud directories.
See docs/用例目录/README.md for the full command/use-case/parameter catalog (Chinese).
Installation
Preconditions
- Node.js 22+,
dshCLI installed. aliyunpanCLI installed (see https://github.com/tickstep/aliyunpan).
Install from GitHub
dsh plugin --profile default add github:king-bcolor/dsh-aliyundrive-plugin
# allowlist build in $DSH_HOME/profiles/default/pnpm-workspace.yaml if requested
Install locally
git clone https://github.com/king-bcolor/dsh-aliyundrive-plugin.git
cd dsh-aliyundrive-plugin
dsh plugin --profile default add .
Usage
dsh --profile default
# or the web profile
dsh web
Open a conversation and switch to the 阿里云盘 tab for the UI.
Example prompts:
List files in the root of my backup drive.Upload ~/Documents to /我的文档.Start sync from ~/Documents to /备份盘/我的文档 using increment policy.
Configuration
- id: aliyundrive
name: dsh-aliyundrive-plugin
config:
aliyunpanBin: /usr/local/bin/aliyunpan
timeoutMs: 60000
longRunningTimeoutMs: 3600000
confirmDangerous: true
Development
TDD is mandatory:
npm test
License
MIT