🛠️ Googleslides Automation
Googleスライドでの資料作成や更新作業を
📺 まず動画で見る(YouTube)
▶ 【衝撃】最強のAIエージェント「Claude Code」の最新機能・使い方・プログラミングをAIで効率化する超実践術を解説! ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Automate Google Slides tasks via Rube MCP (Composio): create presentations, add slides from Markdown, batch update, copy from templates, get thumbnails. Always search tools first for current schemas.
🇯🇵 日本人クリエイター向け解説
Googleスライドでの資料作成や更新作業を
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o googleslides-automation.zip https://jpskill.com/download/1701.zip && unzip -o googleslides-automation.zip && rm googleslides-automation.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/1701.zip -OutFile "$d\googleslides-automation.zip"; Expand-Archive "$d\googleslides-automation.zip" -DestinationPath $d -Force; ri "$d\googleslides-automation.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
googleslides-automation.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
googleslides-automationフォルダができる - 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-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Googleslides Automation を使って、最小構成のサンプルコードを示して
- › Googleslides Automation の主な使い方と注意点を教えて
- › Googleslides Automation を既存プロジェクトに組み込む方法を教えて
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Google Slides Automation via Rube MCP
Create, edit, and manage Google Slides presentations programmatically using Rube MCP (Composio).
Toolkit docs: composio.dev/toolkits/googleslides
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active connection via
RUBE_MANAGE_CONNECTIONSwith toolkitgoogleslides - Always call
RUBE_SEARCH_TOOLSfirst to get current tool schemas
Setup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
RUBE_SEARCH_TOOLSresponds - Call
RUBE_MANAGE_CONNECTIONSwith toolkitgoogleslides - If connection is not ACTIVE, follow the returned auth link to complete setup
- Confirm connection status shows ACTIVE before running any workflows
Core Workflows
1. Create a Blank Presentation
Use GOOGLESLIDES_PRESENTATIONS_CREATE to initialize a new blank presentation.
Tool: GOOGLESLIDES_PRESENTATIONS_CREATE
Parameters:
- title (required): Title for the new presentation
- presentationId (optional): Specific ID to assign (usually auto-generated)
2. Create Slides from Markdown
Use GOOGLESLIDES_CREATE_SLIDES_MARKDOWN to generate a full presentation from Markdown text. Content is automatically split into slides.
Tool: GOOGLESLIDES_CREATE_SLIDES_MARKDOWN
Parameters:
- title (required): Presentation title
- markdown_text (required): Markdown content (auto-split into slides)
3. Batch Update a Presentation
Use GOOGLESLIDES_PRESENTATIONS_BATCH_UPDATE to apply updates to an existing presentation using Markdown or raw API requests.
Tool: GOOGLESLIDES_PRESENTATIONS_BATCH_UPDATE
Parameters:
- presentationId (required): Target presentation ID
- markdown_text: Markdown content to update slides
- requests: Raw Google Slides API batch update requests
- writeControl: Write control settings
4. Copy from Template
Use GOOGLESLIDES_PRESENTATIONS_COPY_FROM_TEMPLATE to duplicate an existing presentation as a template.
Tool: GOOGLESLIDES_PRESENTATIONS_COPY_FROM_TEMPLATE
Parameters:
- template_presentation_id (required): Source template presentation ID
- new_title (required): Title for the new copy
- parent_folder_id (optional): Google Drive folder for the copy
5. Get Presentation Details
Use GOOGLESLIDES_PRESENTATIONS_GET to retrieve the current state of a presentation including all slides and elements.
Tool: GOOGLESLIDES_PRESENTATIONS_GET
Parameters:
- presentationId (required): Presentation ID to retrieve
- fields (optional): Specific fields to return
6. Generate Slide Thumbnails
Use GOOGLESLIDES_PRESENTATIONS_PAGES_GET_THUMBNAIL to generate a thumbnail image URL for a specific slide.
Tool: GOOGLESLIDES_PRESENTATIONS_PAGES_GET_THUMBNAIL
Parameters:
- presentationId (required): Presentation ID
- pageObjectId (required): Page/slide object ID
- thumbnailProperties.mimeType: Image format (e.g., PNG)
- thumbnailProperties.thumbnailSize: Thumbnail size
Common Patterns
- Markdown-first workflow: Use
GOOGLESLIDES_CREATE_SLIDES_MARKDOWNto quickly generate presentations from structured text. The tool auto-splits content into separate slides. - Template-based generation: Use
GOOGLESLIDES_PRESENTATIONS_COPY_FROM_TEMPLATEto copy a styled template, thenGOOGLESLIDES_PRESENTATIONS_BATCH_UPDATEto fill in content. - Retrieve then modify: Use
GOOGLESLIDES_PRESENTATIONS_GETto inspect slide structure and object IDs, thenGOOGLESLIDES_PRESENTATIONS_BATCH_UPDATEto make targeted changes. - Export thumbnails: Use
GOOGLESLIDES_PRESENTATIONS_PAGES_GETto list page object IDs, thenGOOGLESLIDES_PRESENTATIONS_PAGES_GET_THUMBNAILto generate preview images. - Share presentations: Combine with
GOOGLEDRIVE_ADD_FILE_SHARING_PREFERENCE(googledrive toolkit) to share after creation.
Known Pitfalls
GOOGLESLIDES_CREATE_SLIDES_MARKDOWNcreates a brand-new presentation each time -- it cannot append to an existing one.GOOGLESLIDES_PRESENTATIONS_BATCH_UPDATEwith rawrequestsrequires knowledge of the Google Slides API request format. Prefermarkdown_textfor simpler updates.- Page object IDs must be obtained from
GOOGLESLIDES_PRESENTATIONS_GETbefore using thumbnail or page-get tools. - The
presentationIdis the long alphanumeric string from the Google Slides URL (between/d/and/edit). - Copying from a template requires the authenticated user to have at least read access to the template presentation.
Quick Reference
| Action | Tool | Key Parameters |
|---|---|---|
| Create blank presentation | GOOGLESLIDES_PRESENTATIONS_CREATE |
title |
| Create from Markdown | GOOGLESLIDES_CREATE_SLIDES_MARKDOWN |
title, markdown_text |
| Batch update slides | GOOGLESLIDES_PRESENTATIONS_BATCH_UPDATE |
presentationId, markdown_text or requests |
| Copy from template | GOOGLESLIDES_PRESENTATIONS_COPY_FROM_TEMPLATE |
template_presentation_id, new_title |
| Get presentation | GOOGLESLIDES_PRESENTATIONS_GET |
presentationId |
| Get page details | GOOGLESLIDES_PRESENTATIONS_PAGES_GET |
presentationId, pageObjectId |
| Get slide thumbnail | GOOGLESLIDES_PRESENTATIONS_PAGES_GET_THUMBNAIL |
presentationId, pageObjectId |
Powered by Composio