jpskill.com
📦 その他 コミュニティ

gws-forms

Googleフォームの情報を読み込んだり、フォームにデータを書き込んだりすることで、アンケートや申し込みなどの情報を効率的に収集・管理するSkill。

📜 元の英語説明(参考)

Read and write Google Forms.

🇯🇵 日本人クリエイター向け解説

一言でいうと

Googleフォームの情報を読み込んだり、フォームにデータを書き込んだりすることで、アンケートや申し込みなどの情報を効率的に収集・管理するSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o gws-forms.zip https://jpskill.com/download/19178.zip && unzip -o gws-forms.zip && rm gws-forms.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/19178.zip -OutFile "$d\gws-forms.zip"; Expand-Archive "$d\gws-forms.zip" -DestinationPath $d -Force; ri "$d\gws-forms.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して gws-forms.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → gws-forms フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

[Skill 名] gws-forms

forms (v1)

前提条件: 認証、グローバルフラグ、およびセキュリティルールについては、../gws-shared/SKILL.md をお読みください。ファイルがない場合は、gws generate-skills を実行して作成してください。

gws forms <resource> <method> [flags]

API リソース

forms

  • batchUpdate — バッチ更新でフォームを変更します。
  • create — リクエストで提供されたフォームメッセージに指定されたタイトルを使用して、新しいフォームを作成します。重要: form.info.titleform.info.document_title フィールドのみが新しいフォームにコピーされます。フォームの説明、項目、設定を含む他のすべてのフィールドは許可されません。新しいフォームを作成して項目を追加するには、まず forms.create を呼び出してタイトルと(オプションの)ドキュメントタイトルを持つ空のフォームを作成し、次に forms.update を呼び出して項目を追加する必要があります。
  • get — フォームを取得します。
  • setPublishSettings — フォームの公開設定を更新します。レガシーフォームは publish_settings フィールドがないためサポートされていません。
  • responses — 'responses' リソースに対する操作
  • watches — 'watches' リソースに対する操作

コマンドの発見

API メソッドを呼び出す前に、それを検査してください。

# リソースとメソッドを閲覧する
gws forms --help

# メソッドの必須パラメータ、型、デフォルト値を検査する
gws schema forms.<resource>.<method>

gws schema の出力を使用して、--params および --json フラグを作成してください。

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

forms (v1)

PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it.

gws forms <resource> <method> [flags]

API Resources

forms

  • batchUpdate — Change the form with a batch of updates.
  • create — Create a new form using the title given in the provided form message in the request. Important: Only the form.info.title and form.info.document_title fields are copied to the new form. All other fields including the form description, items and settings are disallowed. To create a new form and add items, you must first call forms.create to create an empty form with a title and (optional) document title, and then call forms.update to add the items.
  • get — Get a form.
  • setPublishSettings — Updates the publish settings of a form. Legacy forms aren't supported because they don't have the publish_settings field.
  • responses — Operations on the 'responses' resource
  • watches — Operations on the 'watches' resource

Discovering Commands

Before calling any API method, inspect it:

# Browse resources and methods
gws forms --help

# Inspect a method's required params, types, and defaults
gws schema forms.<resource>.<method>

Use gws schema output to build your --params and --json flags.