google-drive-case-upload

Uploads case documents into case-number subfolders in Google Drive.

Updated Sep 5, 2026
One-click install
npx skills add https://github.com/SillyHippy/zo-skills --skill google-drive-case-upload-sillyhippy
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: google-drive-case-upload
Source: https://github.com/SillyHippy/zo-skills/tree/main/skills/google-drive-case-upload
Command: npx skills add https://github.com/SillyHippy/zo-skills --skill google-drive-case-upload-sillyhippy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually organizing and uploading case documents to Google Drive is repetitive and error-prone, especially when each case requires its own numbered subfolder. This Skill automates the creation of case-number folders and the upload of files into the correct location. ## Core Features & Use Cases - Case Folder Creation: Creates a subfolder named with the case number (e.g., FD-08-3695) inside the designated "Site Upload" folder. - Automated File Upload: Copies source files to /tmp and uploads them into the newly created case folder using Google Drive tools. - Use Case: A legal assistant receives a new PDF for case FD-08-3695 and needs it filed in the shared Drive. The Skill creates the FD-08-3695 folder under Site Upload and uploads the document there in one workflow. ## Quick Start Upload the attached case PDF to Google Drive under a new case folder named FD-08-3695 inside the Site Upload folder.

Frequently Asked Questions about google-drive-case-upload

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I upload files to a specific Google Drive folder?▼

Use the google_drive-upload-file tool with the target folder's ID as the parentId and the local file path. This Skill first creates a case-number subfolder under the Site Upload folder, then uploads files into that new folder.

How do I create a subfolder in Google Drive programmatically?▼

Use google_drive-create-folder with the parent folder's ID as parentId and the desired name. This Skill uses the Site Upload folder ID 1ZB7XTSC_eD6m3F-6_yI2VP065cKEQzVq as the parent for case-number subfolders.

What file types can be uploaded to Google Drive with this Skill?▼

The Skill is designed for PDFs and other case documents. Any file that can be copied to /tmp and passed to google_drive-upload-file with a file path and name can be uploaded.

Why do files need to be copied to /tmp before uploading?▼

The upload tool expects a local file path, and staging files in /tmp provides a consistent, accessible location. Copy the source file to /tmp first, then reference that path in the upload call.

What are the limitations of this Google Drive upload workflow?▼

It targets a single fixed parent folder (Site Upload) and depends on the google_drive-create-folder and google_drive-upload-file tools being available. It does not handle duplicate folder detection or permission management.