Loading...
Loading...
Enables Claude to upload, organize, search, and manage files in Google Drive via Playwright MCP
npx skill4agent add andrejones92/canifi-life-os google-drivecurl -sSL https://canifi.com/skills/google-drive/install.sh | bashcp -r skills/google-drive ~/.canifi/skills/# First, ensure canifi-env is installed:
# curl -sSL https://canifi.com/install.sh | bash
canifi-env set GOOGLE_EMAIL "your-email@gmail.com"canifi-env set SERVICE_EMAIL "your-email"
canifi-env set SERVICE_PASSWORD "your-password"User: "Find my resume document"
Claude: Searches Drive for "resume", returns results:
"Found 3 files: Resume_2024.docx (modified yesterday),
Resume_old.pdf (3 months ago)..."User: "Create a folder for Q4 reports and move all Q4 files there"
Claude: Creates "Q4 Reports" folder, searches for Q4-related files,
moves them to new folder. Reports: "Created folder, moved 12 files"User: "Share the project proposal with john@example.com as editor"
Claude: Locates file, opens sharing dialog, adds john@example.com with edit
permissions. Confirms: "Shared with john@example.com (Editor access)"User: "How much Drive storage am I using?"
Claude: Opens storage view, reads usage. Reports:
"Using 8.2 GB of 15 GB (54%). Largest files: video.mp4 (2.1GB)..."// New button
'[aria-label="New"]'
// Search box
'input[aria-label="Search in Drive"]'
// File list
'.Q5txwe' // File rows
// File name
'.KL4NAf'
// Folder navigation
'.a-fc-Uc' // Breadcrumb
// Context menu
'[role="menu"]'
// Share button
'[aria-label="Share"]'
// Download button
'[aria-label="Download"]'
// Move to button
'[aria-label="Move to"]'
// Trash button
'[aria-label="Move to trash"]'
// Storage indicator
'.a-Ja-we'
// Upload file
'[aria-label="File upload"]'
// Create folder
'[aria-label="Folder"]'