skills/google-drive/SKILL.md
Google Drive, Docs, Sheets, and Slides access for all agents. Use to read, write, share, and organize files in Garrett's vowsok.com Google Drive. Requires gws CLI authentication.
npx skillsauth add garrettroi/open-manus google-driveInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Provides access to Garrett's Google Drive (vowsok.com Google Workspace account) via the gws CLI.
Primary Account: [email protected] (Google Workspace)
This skill uses a Google Service Account with domain-wide delegation.
The service account JSON is stored in the Vault as GOOGLE_SERVICE_ACCOUNT_JSON.
To authenticate the gws CLI:
# Export the service account JSON from vault
python3 /app/skills/vault_client/vault_client.py get GOOGLE_SERVICE_ACCOUNT_JSON > /tmp/sa.json
# Configure gws with the service account
gws auth service-account /tmp/sa.json --impersonate [email protected]
rm /tmp/sa.json # Clean up
gws drive list
gws drive list --folder "Clients"
gws drive search --query "wedding contract"
gws docs read --id "DOCUMENT_ID"
gws docs read --name "Wedding Contract Template"
gws docs create --title "New Document" --content "Content here"
gws drive share --id "FILE_ID" --email "[email protected]" --role reader
gws drive upload --file /path/to/file.pdf --folder "Contracts"
gws sheets read --id "SHEET_ID" --range "Sheet1!A1:Z100"
gws sheets append --id "SHEET_ID" --range "Sheet1" --values "Name,Email,Date"
| Folder | Purpose | |--------|---------| | Clients | Client files and contracts | | Templates | Document templates for all businesses | | Marketing | Marketing assets and campaigns | | Real Estate | McGarry Homes transaction files | | DJ Business | Vows & Vinyl contracts and playlists | | Cana | Cana Collective vendor files |
gws CLI must be installed: pip install gws-cli or check if pre-installeddevelopment
# Voice Sanitizer This skill cleans up text before it is sent to the Text-to-Speech (TTS) engine. It removes technical jargon, code blocks, and long URLs to ensure the agent sounds natural and conversational in voice chat. ## Usage To sanitize text for speech, run the following command in the terminal: ```bash python3 /app/skills/voice_sanitizer/sanitizer.py "Your long, technical text with `code` and https://links.com/long-url" ``` ### Example Output ```text Your long, technical text with a
tools
Professional AI video production workflow. Use when creating videos, short films, commercials, or any video content using AI generation tools.
tools
Secure API key access from the centralized vault. Fetch keys on-demand without storing them in environment variables.
testing
# Task Board — Persistent Task Tracking for Open Manus This skill provides a shared task board backed by Redis. Harmony uses it to track delegated work across all agents, and agents use it to report progress and completion. ## When to Use - **Harmony**: Use this whenever you delegate a task to an agent. Add the task to the board, then check the board periodically to follow up. - **Worker Agents**: Use this to update your task status or mark tasks as complete. ## Commands ### Add a new task