$npx -y skills add T0UGH/videoclaw --skill video-uploadUse when user needs to upload files to cloud storage (Google Drive). Independent upload command for uploading any file to cloud.
| 1 | # video-upload - 上传文件到云盘 |
| 2 | |
| 3 | ## Overview |
| 4 | |
| 5 | Upload local files to cloud storage. Currently supports Google Drive. |
| 6 | |
| 7 | ## Usage |
| 8 | |
| 9 | > **注意**:如果是首次使用,确保已安装 videoclaw:`uvx videoclaw --help` |
| 10 | |
| 11 | ```bash |
| 12 | # 上传文件到 Google Drive |
| 13 | videoclaw upload -i local/file.mp4 -r videoclaw/project/file.mp4 |
| 14 | |
| 15 | # 指定提供商 |
| 16 | videoclaw upload -i file.mp4 -r path/file.mp4 --provider google_drive |
| 17 | ``` |
| 18 | |
| 19 | ## Parameters |
| 20 | |
| 21 | - `--input, -i`: Local file path (required) |
| 22 | - `--remote, -r`: Remote path in cloud storage (required) |
| 23 | - `--provider`: Cloud provider (optional, default: google_drive) |
| 24 | |
| 25 | ## Remote Path Format |
| 26 | |
| 27 | ``` |
| 28 | videoclaw/project-name/folder/file.mp4 |
| 29 | ``` |
| 30 | |
| 31 | The upload command will automatically create the folder structure in Google Drive. |
| 32 | |
| 33 | ## Examples |
| 34 | |
| 35 | ``` |
| 36 | Claude Code: videoclaw upload -i ~/videoclaw-projects/demo-video/videos/final.mp4 -r videoclaw/demo-video/final.mp4 |
| 37 | ``` |