google-drive — google-drive install google-drive, team-operations, community, google-drive install, ide skills, gogcli commands, google drive file management, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Cloud Storage Agents needing advanced Google Drive file management capabilities. google-drive is a command-line interface for interacting with Google Drive using gogcli, allowing for file listing, searching, and management.

Features

Lists files in the root folder using the gog drive ls command
Supports searching for files using the gog drive search command with full-text queries
Allows for filtering files by mime type using the --query flag
Enables authentication with Google Drive using the gog auth login command
Supports specifying the parent folder ID using the --parent flag
Allows for limiting the number of results using the --max flag

# Core Topics

ryok ryok
[0]
[0]
Updated: 3/8/2026

Agent Capability Analysis

The google-drive skill by ryok is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for google-drive install, gogcli commands, google drive file management.

Ideal Agent Persona

Perfect for Cloud Storage Agents needing advanced Google Drive file management capabilities.

Core Value

Empowers agents to perform Google Drive operations using gogcli, enabling efficient file listing, searching, and management through commands like 'gog drive ls' and 'gog drive search', with support for query filters and authentication via 'gog auth login'.

Capabilities Granted for google-drive

Listing files in specific folders using 'gog drive ls --parent=<folderId>'
Searching files by mimeType using 'gog drive ls --query=mimeType='application/vnd.google-apps.folder''
Automating file management tasks through scripted gogcli commands

! Prerequisites & Limits

  • Requires gogcli installation via 'brew install gogcli'
  • Needs initial authentication setup via 'gog auth login'
  • Dependent on gogcli compatibility and Google Drive API limitations
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

google-drive

Install google-drive, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Google Drive Operations with gogcli

gog CLIを使用してGoogle Driveを操作する。

Prerequisites

bash
1# Installation 2brew install gogcli 3 4# Authentication (初回のみ) 5gog auth login

Commands Reference

List Files

bash
1# ルートフォルダのファイル一覧 2gog drive ls 3 4# 特定フォルダの一覧 5gog drive ls --parent="<folderId>" 6 7# 最大件数指定 8gog drive ls --max=50 9 10# クエリフィルタ付き 11gog drive ls --query="mimeType='application/vnd.google-apps.folder'"

Search Files

bash
1# フルテキスト検索 2gog drive search "検索キーワード" 3 4# 複数キーワード 5gog drive search "報告書 2024" 6 7# JSON形式で出力 8gog drive search "議事録" --json --max=20

Download Files

bash
1# ファイルをダウンロード 2gog drive download <fileId> 3 4# 出力先を指定 5gog drive download <fileId> --out="/path/to/output.pdf" 6 7# Google Docsのエクスポート形式を指定 8gog drive download <fileId> --format=pdf # PDF形式 9gog drive download <fileId> --format=docx # Word形式 10gog drive download <fileId> --format=xlsx # Excel形式 11gog drive download <fileId> --format=pptx # PowerPoint形式 12gog drive download <fileId> --format=csv # CSV形式 13gog drive download <fileId> --format=txt # テキスト形式

Upload Files

bash
1# ファイルをアップロード(ルートへ) 2gog drive upload /path/to/file.pdf 3 4# ファイル名を変更してアップロード 5gog drive upload /path/to/file.pdf --name="新しいファイル名.pdf" 6 7# 特定フォルダへアップロード 8gog drive upload /path/to/file.pdf --parent="<folderId>"

Create Folder

bash
1# ルートにフォルダ作成 2gog drive mkdir "新しいフォルダ" 3 4# 特定フォルダ内にサブフォルダ作成 5gog drive mkdir "サブフォルダ" --parent="<parentFolderId>"

File Operations

bash
1# ファイルのメタデータ取得 2gog drive get <fileId> 3 4# ファイルをコピー 5gog drive copy <fileId> "コピー後の名前" 6 7# ファイルを移動 8gog drive move <fileId> --parent="<newParentFolderId>" 9 10# ファイル名を変更 11gog drive rename <fileId> "新しい名前" 12 13# ファイルを削除(ゴミ箱へ) 14gog drive delete <fileId> 15 16# WebのURLを取得 17gog drive url <fileId>

Share Files

bash
1# 特定ユーザーと共有(閲覧権限) 2gog drive share <fileId> --email="user@example.com" --role="reader" 3 4# 特定ユーザーと共有(編集権限) 5gog drive share <fileId> --email="user@example.com" --role="writer" 6 7# 公開リンクを作成 8gog drive share <fileId> --anyone --role="reader" 9 10# 権限一覧を表示 11gog drive permissions <fileId> 12 13# 権限を削除 14gog drive unshare <fileId> <permissionId>

Shared Drives

bash
1# 共有ドライブ一覧 2gog drive drives

Comments

bash
1# ファイルのコメント一覧 2gog drive comments list <fileId> 3 4# コメントを追加 5gog drive comments add <fileId> "コメント内容"

Common Workflows

最近のファイルを確認

bash
1gog drive ls --max=10

特定の名前のファイルを検索

bash
1gog drive search "週報"

Google Docsをローカルにダウンロード

bash
1# PDF形式でダウンロード 2gog drive download <fileId> --format=pdf --out="./document.pdf"

ローカルファイルを特定フォルダにアップロード

bash
1# まずフォルダIDを確認 2gog drive search "プロジェクトフォルダ" --json 3 4# フォルダにアップロード 5gog drive upload ./report.pdf --parent="<folderId>"

Output Formats

FlagDescription
--jsonJSON形式で出力(スクリプト向け)
--plainTSV形式で出力(パース容易)
(default)人間が読みやすい形式

Tips

  • --account=email@example.com で複数アカウントを切り替え
  • ファイルIDはURLから取得可能: https://drive.google.com/file/d/<fileId>/view
  • フォルダIDもURLから取得可能: https://drive.google.com/drive/folders/<folderId>
  • --force で確認をスキップ(削除時など注意して使用)

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is google-drive?

Perfect for Cloud Storage Agents needing advanced Google Drive file management capabilities. google-drive is a command-line interface for interacting with Google Drive using gogcli, allowing for file listing, searching, and management.

How do I install google-drive?

Run the command: npx killer-skills add ryok/team-operations. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for google-drive?

Key use cases include: Listing files in specific folders using 'gog drive ls --parent=<folderId>', Searching files by mimeType using 'gog drive ls --query=mimeType='application/vnd.google-apps.folder'', Automating file management tasks through scripted gogcli commands.

Which IDEs are compatible with google-drive?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for google-drive?

Requires gogcli installation via 'brew install gogcli'. Needs initial authentication setup via 'gog auth login'. Dependent on gogcli compatibility and Google Drive API limitations.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add ryok/team-operations. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use google-drive immediately in the current project.

Related Skills

Looking for an alternative to google-drive or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI