gog▌
naoterumaker/openclaw-gog-skills · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Unified CLI for Gmail, Calendar, Drive, Sheets, Docs, Contacts, and Tasks.
- ›Supports six Google Workspace services with commands for searching/reading emails, managing calendar events, uploading/downloading files, reading/writing spreadsheet data, managing contacts, and creating/completing tasks
- ›Includes email operations: search with advanced queries, send with attachments and threading, label management, and attachment downloads
- ›Calendar features: list events by date range, create ev
gog - Google Workspace CLI (v0.10.0)
Google サービスを操作するCLIツール。
アカウント: [email protected] (default)
実行パス: gog
Execution Notes
execツールで実行時、timeout: 60を指定(API応答待ちのため)- 長いリスト取得は
--maxで制限
Gmail
メール検索
# 基本検索
gog gmail search "検索クエリ"
gog gmail search "from:[email protected]"
gog gmail search "is:unread" --max 10
gog gmail search "subject:請求書 after:2026/01/01"
# 全ページ取得
gog gmail search "label:重要" --all
検索クエリ例:
is:unread- 未読from:xxx- 送信者to:xxx- 宛先subject:xxx- 件名has:attachment- 添付ありafter:YYYY/MM/DD- 日付以降label:xxx- ラベル
メール取得
# メッセージ取得
gog gmail get <messageId>
gog gmail get <messageId> --body # 本文込み
# 添付ファイルダウンロード
gog gmail attachment <messageId> <attachmentId>
メール送信
# 基本送信
gog gmail send --to "[email protected]" --subject "件名" --body "本文"
# CC/BCC付き
gog gmail send --to "[email protected]" --cc "[email protected]" --bcc "[email protected]" --subject "件名" --body "本文"
# 添付ファイル付き
gog gmail send --to "[email protected]" --subject "件名" --body "本文" --attach "./file.pdf"
# スレッドに返信
gog gmail send --thread-id <threadId> --to "[email protected]" --subject "Re: 件名" --body "返信本文"
# 全員に返信
gog gmail send --reply-to-message-id <messageId> --reply-all --subject "Re: 件名" --body "返信"
送信オプション:
| オプション | 説明 |
|---|---|
--to |
宛先(カンマ区切り) |
--cc |
CC |
--bcc |
BCC |
--subject |
件名 |
--body |
本文(プレーンテキスト) |
--body-html |
HTML本文 |
--body-file |
本文ファイル |
--attach |
添付ファイル(複数可) |
--thread-id |
スレッドID(返信時) |
--reply-to-message-id |
返信元メッセージID |
--reply-all |
全員に返信 |
ラベル操作
# ラベル一覧
gog gmail labels list
# ラベル追加/削除
gog gmail thread modify <threadId> --add-labels "INBOX" --remove-labels "UNREAD"
Calendar
予定一覧
# 今後の予定(デフォルト7日間)
gog calendar events
gog calendar events --max 20
# 期間指定
gog calendar events --from "2026-02-01" --to "2026-02-28"
# 特定カレンダー
gog calendar events primary
gog calendar events "[email protected]"
予定作成
# 通常の予定
gog calendar create primary --summary "ミーティング" --from "2026-02-15T10:00:00+09:00" --to "2026-02-15T11:00:00+09:00"
# 終日予定
gog calendar create primary --summary "休暇" --from "2026-02-20" --to "2026-02-21" --all-day
# 場所・参加者付き
gog calendar create primary --summary "会議" --from "2026-02-15T14:00:00+09:00" --to "2026-02-15T15:00:00+09:00" \
--location "会議室A" --attendees "[email protected],[email protected]"
# Google Meet付き
gog calendar create primary --summary "オンラインMTG" --from "2026-02-15T10:00:00+09:00" --to "2026-02-15T11:00:00+09:00" --with-meet
# リマインダー付き
gog calendar create primary --summary "MTG" --from "2026-02-15T10:00:00+09:00" --to "2026-02-15T11:00:00+09:00" --reminder "popup:30m" --reminder "email:1d"
作成オプション:
| オプション | 説明 |
|---|---|
--summary |
タイトル |
--from |
開始時刻(RFC3339) |
--to |
終了時刻(RFC3339) |
--all-day |
終日予定 |
--location |
場所 |
--description |
説明 |
--attendees |
参加者(カンマ区切り) |
--with-meet |
Google Meet作成 |
--reminder |
リマインダー(popup:30m, email:1d等) |
--rrule |
繰り返し |
予定更新・削除
# 更新
gog calendar update primary <eventId> --summary "新タイトル"
# 削除
gog calendar delete primary <eventId>
検索
gog calendar search "ミーティング"
カレンダー一覧
gog calendar calendars
Drive
ファイル一覧
# ルートフォルダ
gog drive ls
# 特定フォルダ
gog drive ls --parent <folderId>
# 件数制限
gog drive ls --max 20
検索
gog drive search "レポート"
gog drive search "mimeType='application/pdf'"
ダウンロード・アップロード
# ダウンロード
gog drive download <fileId>
gog drive download <fileId> --output "./local-file.pdf"
# アップロード
gog drive upload "./local-file.pdf"
gog drive upload "./file.pdf" --parent <folderId>
フォルダ作成・移動
# フォルダ作成
gog drive mkdir "新フォルダ"
gog drive mkdir "サブフォルダ" --parent <parentFolderId>
# 移動
gog drive move <fileId> --parent <newFolderId>
# リネーム
gog drive rename <fileId> "新しい名前"
コピー
gog drive copy <fileId> "コピー名"
gog drive copy <fileId> "コピー名" --parent <folderId>
共有
# 共有
gog drive share <fileId> --email "[email protected]" --role reader
gog drive share <fileId> --email "[email protected]" --role writer
# 権限一覧
gog drive permissions <fileId>
# 共有解除
gog drive unshare <fileId> <permissionId>
Sheets
読み取り
gog sheets get <spreadsheetId> "シート1!A1:C10"
gog sheets get <spreadsheetId> "シート1!A:A" # 列全体
書き込み
# パイプ区切りで複数セル
gog sheets update <spreadsheetId> "シート1!A1:C1" "値1|値2|値3"
# JSON形式(カンマ・パイプを含むデータ)
gog sheets update <spreadsheetId> "シート1!A1:C2" --values-json '[["名前","金額"],["田中","500,000"]]'
追加(末尾に行追加)
gog sheets append <spreadsheetId> "シート1" "値1|値2|値3"
クリア
gog sheets clear <spreadsheetId> "シート1!A1:C10"
書式設定
FMT='{"backgroundColor":{"red":0.2,"green":0.4,"blue":0.7},"textFormat":{"bold":true}}'
gog sheets format <spreadsheetId> "シート1!A1:C1" --format-json "$FMT"
作成・コピー
# 新規作成
gog sheets create "新しいスプレッドシート"
gog sheets create "タイトル" --sheets "シート1,シート2,シート3"
# コピー
gog sheets copy <spreadsheetId> "コピー名"
メタデータ・エクスポート
gog sheets metadata <spreadsheetId>
gog sheets export <spreadsheetId> --format csv
gog sheets export <spreadsheetId> --format xlsx
Contacts
検索・一覧
gog contacts list
gog contacts list --max 50
gog contacts search "田中"
取得・作成
gog contacts get <resourceName>
gog contacts create --name "山田太郎" --email "[email protected]" --phone "090-1234-5678"
更新・削除
gog contacts update <resourceName> --name "新しい名前"
gog contacts delete <resourceName>
Tasks
タスクリスト
gog tasks lists list # リスト一覧
タスク操作
# 一覧
gog tasks list <tasklistId>
<How to use gog on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add gog
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches gog from GitHub repository naoterumaker/openclaw-gog-skills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate gog. Access the skill through slash commands (e.g., /gog) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
Task Automation & Efficiency
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Knowledge Enhancement
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Quality Improvement
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Installation Steps
- 1.Install skill using provided installation command
- 2.Test with simple use case relevant to your work
- 3.Evaluate output quality and relevance
- 4.Iterate on prompts to improve results
- 5.Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices▌
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This▌
✓ Use When
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid When
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path▌
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★74 reviews- ★★★★★Fatima Johnson· Dec 28, 2024
gog reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Dhruvi Jain· Dec 20, 2024
Useful defaults in gog — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Diya Farah· Dec 20, 2024
We added gog from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Yusuf Harris· Dec 20, 2024
I recommend gog for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Emma Khanna· Dec 16, 2024
Solid pick for teams standardizing on skills: gog is focused, and the summary matches what you get after install.
- ★★★★★Ishan Smith· Dec 12, 2024
gog fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Luis Mensah· Dec 8, 2024
gog is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Ishan Taylor· Nov 27, 2024
Useful defaults in gog — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Oshnikdeep· Nov 11, 2024
gog is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Valentina Menon· Nov 11, 2024
Solid pick for teams standardizing on skills: gog is focused, and the summary matches what you get after install.
showing 1-10 of 74