Agent skill
upload-drive
Upload files to Google Drive. Useful for exporting final tailored resumes or saving logs to a cloud destination.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/upload-drive
SKILL.md
Upload to Google Drive
Overview
This skill allows uploading files to a specified Google Drive folder. It handles authentication using a credentials.json file (OAuth 2.0).
Prerequisites
Requires Google Client libraries:
pip install google-api-python-client google-auth-httplib2 google-auth-oauthlib
You must provide a credentials.json file from the Google Cloud Console.
Usage
Upload Script
Syntax:
python3 .agent/skills/upload-drive/scripts/upload_drive.py <file_path> [--folder_id <id>] [--credentials <path>]
Arguments:
file_path: Path of file to upload.--folder_id: (Optional) ID of the destination Google Drive folder.--credentials: (Optional) Path tocredentials.json. Defaults tocredentials.jsonin current dir.--token: (Optional) Path totoken.jsonto store session. Defaults totoken.json.
Example:
# Upload resume to specific folder
python3 .agent/skills/upload-drive/scripts/upload_drive.py tailored_resume.pdf --folder_id 1A2B3C... --credentials ~/.secrets/credentials.json
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?