Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

google-workspaceGoogle Workspace 办公协作

Agent Skill

google-workspace 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,387

周安装

181

GitHub Stars

11

下载量

1,434
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:google-workspace(Google Workspace 办公协作)
来源仓库:https://github.com/casper-studios/casper-marketplace
仓库路径:skills/google-workspace
安装命令:
npx skills add https://github.com/casper-studios/casper-marketplace --skill google-workspace
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/casper-studios/casper-marketplace --skill google-workspace

简介

google-workspace 通过 OAuth 认证操作 Google Drive、Gmail、Calendar 与 Docs。

  • 支持文件上传、文件夹创建、邮件搜索与日程管理等办公协同任务自动化。
  • 提供脚本示例覆盖常见用例如客户提案生成与会议纪要归档流程。
  • 使用前需完成 Google Cloud 项目配置并授予相应 API scope 权限。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Google Workspace

Overview

Interact with Google Drive, Gmail, Calendar, and Docs using OAuth authentication. Supports file uploads, folder management, email search, calendar search, and document operations.

Quick Decision Tree

What do you need?
│
├── Google Drive
│   ├── Search files/folders → references/drive-search.md
│   │   └── Script: scripts/gdrive_search.py
│   │
│   ├── Upload files → references/drive-upload.md
│   │   └── Script: scripts/google_drive_upload.py
│   │
│   ├── Create folder structure → references/folder-structure.md
│   │   └── Script: scripts/gdrive_folder_structure.py
│   │
│   ├── Create client folder → references/create-folder.md
│   │   └── Script: scripts/create_client_folder.py
│   │
│   └── Search transcripts → references/transcript-search.md
│       └── Script: scripts/gdrive_transcript_search.py
│
├── Gmail
│   └── Search emails → references/gmail-search.md
│       └── Script: scripts/gmail_search.py
│
└── Calendar
    └── Search meetings → references/calendar-search.md
        └── Script: scripts/google_calendar_search.py

Environment Setup

OAuth credentials are stored locally after first authentication.

Required Files

  • client_secrets.json - From Google Cloud Console
  • settings.yaml - PyDrive2 configuration
  • mycreds.txt - Auto-generated OAuth tokens

First-Time Setup

  1. Go to Google Cloud Console
  2. Enable APIs: Drive, Gmail, Calendar, Docs
  3. Create OAuth 2.0 credentials (Desktop app)
  4. Download as client_secrets.json
  5. Run any script - browser opens for OAuth consent

Common Usage

Search Client Folder

python scripts/gdrive_search.py folder "Microsoft"

Upload Files

python scripts/google_drive_upload.py --files *.png --folder "Clients/Acme/Assets"

Search Emails

python scripts/gmail_search.py --domain "microsoft.com" --days 14

Search Calendar

python scripts/google_calendar_search.py "Microsoft" --days-back 30

OAuth Scopes

ScopePurpose
driveFull Drive access
spreadsheetsSheets access
documentsDocs access
gmail.readonlyRead emails
calendar.readonlyRead calendar

Cost

Free - Google Workspace APIs have generous free quotas.

Security Notes

Credential Handling

  • client_secrets.json - OAuth app credentials (never commit to git)
  • mycreds.txt - User OAuth tokens (never commit to git, add to.gitignore)
  • settings.yaml - PyDrive2 config (can be committed, no secrets)
  • Tokens auto-refresh; revoke via Google Account settings if compromised
  • Never share OAuth credentials between users/machines

Data Privacy

  • Access to user's personal Google Drive, Gmail, and Calendar
  • Files may contain confidential business information
  • Email content is highly sensitive - minimize storage
  • Calendar events may contain private meeting details
  • Shared Drive access respects original permissions

Access Scopes

  • Request minimum required scopes:

- drive - Full Drive access (read/write) - drive.readonly - Read-only Drive access (preferred when possible) - spreadsheets - Google Sheets access - documents - Google Docs access - gmail.readonly - Read-only email access - calendar.readonly - Read-only calendar access

Compliance Considerations

  • OAuth Consent: Users explicitly consent to access scopes
  • GDPR: Google Workspace data contains EU user PII
  • Data Residency: Google Workspace may have data residency requirements
  • Shared Drives: Respect organizational sharing policies
  • Audit Trail: Google Admin Console tracks API access
  • Credential Security: Store client_secrets.json securely, not in repos

Troubleshooting

Common Issues

Issue: OAuth token expired

Symptoms: "Invalid credentials" or "Token has been expired or revoked" error Cause: OAuth refresh token expired or revoked Solution:

  • Delete mycreds.txt file
  • Re-run any script to trigger fresh OAuth flow
  • Complete the browser authorization
  • New mycreds.txt will be created automatically

Issue: File not found

Symptoms: "File not found" error with valid file ID Cause: No access to file, file deleted, or wrong file ID Solution:

  • Verify file ID from the Google Drive URL
  • Check file sharing permissions
  • Ensure OAuth user has access to the file
  • Try accessing file directly in browser first

Issue: Quota exceeded

Symptoms: "User rate limit exceeded" or "Quota exceeded" error Cause: Too many API requests in 24-hour period Solution:

  • Wait 24 hours for quota reset
  • Create a new Google Cloud project with fresh quota
  • Implement exponential backoff in scripts
  • Reduce frequency of API calls

Issue: settings.yaml missing

Symptoms: "settings.yaml not found" or PyDrive2 configuration error Cause: Missing PyDrive2 configuration file Solution:

  • Copy from template: cp settings.yaml.example settings.yaml
  • Ensure client_secrets.json path is correct in settings
  • Verify save_credentials_backend is set to "file"
  • Check settings.yaml is in the script's working directory

Issue: client_secrets.json invalid

Symptoms: "Invalid client secrets" or OAuth configuration error Cause: Malformed or incorrect OAuth credentials file Solution:

  • Re-download from Google Cloud Console
  • Ensure "Desktop app" type was selected when creating credentials
  • Check JSON format is valid
  • Verify redirect URIs are configured for local auth

Issue: Scope access denied

Symptoms: "Insufficient permission" error Cause: OAuth consent missing required scopes Solution:

  • Delete mycreds.txt to reset OAuth session
  • Re-authenticate and accept all requested scopes
  • Verify scopes in settings.yaml match script requirements
  • Check Google Cloud Console for scope restrictions

Resources

  • references/drive-search.md - Search files and folders
  • references/drive-upload.md - Upload files to Drive
  • references/folder-structure.md - Create folder hierarchies
  • references/create-folder.md - Create client folders
  • references/transcript-search.md - Search transcript files
  • references/gmail-search.md - Search Gmail
  • references/calendar-search.md - Search calendar meetings

Integration Patterns

Drive to Video Production

Skills: google-workspace → video-production Use case: Assemble course videos from Drive folder Flow:

  1. Search Drive for video folder with lesson files
  2. Download videos via video-production scripts
  3. Stitch videos with title slides and upload final output

Templates to Content

Skills: google-workspace → content-generation Use case: Generate documents from branded templates Flow:

  1. Load template from Drive (proposal, report format)
  2. Generate content via content-generation
  3. Create new Google Doc with formatted content

Calendar to Transcripts

Skills: google-workspace → transcript-search Use case: Find meeting recordings from calendar events Flow:

  1. Search calendar for meetings with specific client
  2. Get meeting dates and titles
  3. Search transcript-search for matching recordings

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.65%
按下载量换算511

Claude

31.19%
按下载量换算447

Cursor

17.9%
按下载量换算257

Gemini CLI

9.71%
按下载量换算139

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills