用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/buda-ai/bunny-agent --skill upload-to-drive命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | upload-to-drive |
| description | Uploads completed videos and related files to Google Drive with organized folder structure |
Upload Single Video:
Upload the completed video to Google Drive
Folder: Product Videos
Share: Public link
Upload Project Bundle:
Upload all project files to Google Drive
- Final video
- Script
- Thumbnail
- Metadata
Folder: Projects/TeamSync Campaign
Organize Existing Videos:
Organize these videos in Google Drive:
- teamsync_intro.mp4 → Product Videos/TeamSync/
- teamsync_demo.mp4 → Product Videos/TeamSync/
- teamsync_testimonial.mp4 → Product Videos/TeamSync/
Recommended folder structure:
Video Projects/
├── Product Videos/
│ ├── [Product Name]/
│ │ ├── Finals/
│ │ ├── Drafts/
│ │ └── Assets/
├── Shorts/
│ ├── YouTube Shorts/
│ ├── Instagram Reels/
│ └── TikTok/
├── Scripts/
├── Raw Footage/
└── Archives/
Create folders as needed:
Tool: google-drive (via MCP)
Method: create_folder
Parameters:
{
"name": "Product Videos",
"parent_id": "root" or specific folder ID
}
Verify file exists and is ready for upload:
Prepare metadata:
Generate thumbnail (if not exists):
# Extract thumbnail from video
ffmpeg -i video.mp4 -ss 00:00:03 -vframes 1 -vf "scale=1280:-1" thumbnail.jpg
Using Google Drive MCP:
Upload file to Google Drive:
Tool: google-drive
Method: upload_file
Parameters:
{
"file_path": "/path/to/video.mp4",
"destination_folder_id": "folder_id_here",
"name": "teamsync_product_video_v1.mp4",
"description": "TeamSync product introduction video - 60s version"
}
Set file permissions:
Tool: google-drive
Method: set_permissions
Parameters:
{
"file_id": "uploaded_file_id",
"permission_type": "anyone", // or "user", "group", "domain"
"role": "reader" // or "writer", "commenter"
}
Generate shareable link:
Tool: google-drive
Method: get_share_link
Parameters:
{
"file_id": "uploaded_file_id"
}
Upload all project files in sequence:
For each file in project:
1. Upload final video → Finals/
2. Upload draft versions → Drafts/
3. Upload thumbnail → Assets/
4. Upload script → Assets/
5. Upload metadata.txt → Assets/
Create project README in Drive:
File: PROJECT_INFO.txt
Content:
Project: TeamSync Product Video
Created: 2026-01-07
Duration: 60 seconds
Resolution: 1920x1080
Files:
- teamsync_product_video_final.mp4 (Final version)
- teamsync_product_video_draft1.mp4 (Draft)
- script.txt (Video script)
- thumbnail.jpg (Video thumbnail)
Generate appropriate sharing link type:
Provide link with context:
✓ Video uploaded successfully
**Google Drive Link:**
https://drive.google.com/file/d/FILE_ID/view
**Quick Access:**
- View: Click link above
- Download: File → Download
- Share: Share button → Copy link
**Permissions:** Anyone with link can view
**File Size:** 24.5 MB
**Storage Used:** 24.5 MB of 15 GB
When Google Drive MCP is unavailable:
Provide manual upload instructions:
# Manual Google Drive Upload Instructions
## Step 1: Access Google Drive
1. Go to https://drive.google.com
2. Sign in with your Google account
## Step 2: Create Folder Structure
1. Click "New" → "Folder"
2. Create: "Video Projects"
3. Inside, create: "Product Videos"
4. Inside, create: "[Your Product Name]"
## Step 3: Upload Files
1. Navigate to destination folder
2. Click "New" → "File upload"
3. Select your video file: [filename]
4. Wait for upload to complete
5. Verify video plays in Drive preview
## Step 4: Generate Share Link
1. Right-click uploaded file
2. Click "Get link"
3. Set to "Anyone with the link"
4. Set permission to "Viewer"
5. Click "Copy link"
6. Share link as needed
## Files to Upload:
- teamsync_product_video_final.mp4 (Main video)
- script.txt (Video script)
- thumbnail.jpg (Video thumbnail)
Alternative cloud storage options:
User Request:
Upload the TeamSync product video to Google Drive Make it shareable with anyone
Agent Response:
✓ Checking Google Drive connection... ✓ Google Drive MCP available
Preparing upload:
Creating folder structure: ✓ Checking for "Video Projects" folder... ✓ Creating "Product Videos/TeamSync/Finals/"...
Uploading file: [Progress: 0%... 25%... 50%... 75%... 100%] ✓ Upload complete (8.3 seconds)
Setting permissions: ✓ Share link: Anyone with link can view ✓ Permission: Viewer (read-only)
Upload Complete!
📁 Location: Video Projects/Product Videos/TeamSync/Finals/
🔗 Share Link: https://drive.google.com/file/d/1a2b3c4d5e6f7g8h9i0j/view?usp=sharing
File Details:
Quick Actions:
Storage Status:
[project]_[type]_[version]_[date].mp4
Examples:
- teamsync_product_video_v1_2026-01-07.mp4
- teamsync_demo_short_final_2026-01-07.mp4
- teamsync_testimonial_draft2_2026-01-06.mp4
Video Projects/
├── Active Projects/
│ └── [Current projects being worked on]
├── Completed/
│ └── [Finished and delivered projects]
├── Archives/
│ └── [Old projects, drafts, unused footage]
└── Assets/
├── Music/
├── Graphics/
└── Stock Footage/