gws-gmail
Gmailを使って、メールの送受信や管理など、日々のメール業務を効率的に行い、ビジネスコミュニケーションを円滑に進めるのを支援するSkill。
📜 元の英語説明(参考)
Gmail: Send, read, and manage email.
🇯🇵 日本人クリエイター向け解説
Gmailを使って、メールの送受信や管理など、日々のメール業務を効率的に行い、ビジネスコミュニケーションを円滑に進めるのを支援するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o gws-gmail.zip https://jpskill.com/download/19182.zip && unzip -o gws-gmail.zip && rm gws-gmail.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/19182.zip -OutFile "$d\gws-gmail.zip"; Expand-Archive "$d\gws-gmail.zip" -DestinationPath $d -Force; ri "$d\gws-gmail.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
gws-gmail.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
gws-gmailフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
gmail (v1)
前提条件: 認証、グローバルフラグ、およびセキュリティルールについては、
../gws-shared/SKILL.mdをお読みください。ファイルがない場合は、gws generate-skillsを実行して作成してください。
gws gmail <resource> <method> [flags]
ヘルパーコマンド
| コマンド | 説明 |
|---|---|
+send |
メールを送信します |
+triage |
未読の受信トレイの概要(送信者、件名、日付)を表示します |
+reply |
メッセージに返信します(スレッド処理を自動的に行います) |
+reply-all |
メッセージに全員返信します(スレッド処理を自動的に行います) |
+forward |
メッセージを新しい受信者に転送します |
+read |
メッセージを読み、本文またはヘッダーを抽出します |
+watch |
新しいメールを監視し、NDJSON としてストリームします |
APIリソース
users
getProfile— 現在のユーザーのGmailプロフィールを取得します。stop— 指定されたユーザーのメールボックスに対するプッシュ通知の受信を停止します。watch— 指定されたユーザーのメールボックスに対するプッシュ通知の監視を設定または更新します。drafts— 'drafts' リソースに対する操作history— 'history' リソースに対する操作labels— 'labels' リソースに対する操作messages— 'messages' リソースに対する操作settings— 'settings' リソースに対する操作threads— 'threads' リソースに対する操作
コマンドの発見
APIメソッドを呼び出す前に、それを検査してください。
# リソースとメソッドを閲覧する
gws gmail --help
# メソッドの必須パラメータ、型、デフォルト値を検査する
gws schema gmail.<resource>.<method>
gws schema の出力を使用して、--params および --json フラグを作成してください。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
gmail (v1)
PREREQUISITE: Read
../gws-shared/SKILL.mdfor auth, global flags, and security rules. If missing, rungws generate-skillsto create it.
gws gmail <resource> <method> [flags]
Helper Commands
| Command | Description |
|---|---|
+send |
Send an email |
+triage |
Show unread inbox summary (sender, subject, date) |
+reply |
Reply to a message (handles threading automatically) |
+reply-all |
Reply-all to a message (handles threading automatically) |
+forward |
Forward a message to new recipients |
+read |
Read a message and extract its body or headers |
+watch |
Watch for new emails and stream them as NDJSON |
API Resources
users
getProfile— Gets the current user's Gmail profile.stop— Stop receiving push notifications for the given user mailbox.watch— Set up or update a push notification watch on the given user mailbox.drafts— Operations on the 'drafts' resourcehistory— Operations on the 'history' resourcelabels— Operations on the 'labels' resourcemessages— Operations on the 'messages' resourcesettings— Operations on the 'settings' resourcethreads— Operations on the 'threads' resource
Discovering Commands
Before calling any API method, inspect it:
# Browse resources and methods
gws gmail --help
# Inspect a method's required params, types, and defaults
gws schema gmail.<resource>.<method>
Use gws schema output to build your --params and --json flags.