← 返回
未分类 中文

Google Forms

Google Forms API integration with managed OAuth. Create forms, inspect structure, review responses, change publishing settings, and manage response notificat...
通过托管 OAuth 集成 Google Forms API,可创建表单、检查结构、查看回复、修改发布设置并管理回复通知。
hith3sh hith3sh 来源
未分类 clawhub v1.0.6 2 版本 99934.1 Key: 无需
★ 6
Stars
📥 1,396
下载
💾 1
安装
2
版本
#latest

概述

Google Forms

!Google Forms

Access Google Forms via the Google Forms API with managed OAuth authentication. Create forms, inspect structure, review responses, change publishing settings, and manage watches.

This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Google Forms API access yourself.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect Google Forms
:---::---::---:
!Install!PairApp-specific connection GIF coming soon
Run the install command in OpenClawSign in and approve the deviceOpen the dashboard and connect Google Forms

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────▶│   ClawLink   │────▶│   Google Forms   │
│   (User Chat)   │     │   (OAuth)    │     │   (Forms API)    │
└─────────────────┘     └──────────────┘     └──────────────────┘
         │                       │                       │
         │  1. Install Plugin    │                       │
         │  2. Pair Device       │                       │
         │  3. Connect Forms      │                       │
         │                       │  4. Secure Token       │
         │                       │  5. Proxy Requests    │
         │                       │                       │
         ▼                       ▼                       ▼
   ┌──────────┐           ┌──────────┐           ┌──────────┐
   │  SKILL   │           │ Dashboard│           │  Google  │
   │  File    │           │ Auth     │           │  Forms   │
   └──────────┘           └──────────┘           └──────────┘

Install

Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Google Forms again."

Quick Start

# List forms
clawlink_call_tool --tool "googleforms_list_forms" --params '{}'

# Get form by ID
clawlink_call_tool --tool "googleforms_get_form" --params '{"form_id": "YOUR_FORM_ID"}'

# List form responses
clawlink_call_tool --tool "googleforms_list_form_responses" --params '{"form_id": "YOUR_FORM_ID"}'

Authentication

All Google Forms tool calls are authenticated automatically by ClawLink using the user's connected Google account.

No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every Google Forms API request on the user's behalf.

Getting Connected

  1. Install the ClawLink plugin (see Install above).
  2. Pair the plugin with clawlink_begin_pairing if it is not configured yet.
  3. Open https://claw-link.dev/dashboard?add=google-forms and connect Google Forms.
  4. Call clawlink_list_integrations to verify the connection is active.

Connection Management

List Connections

clawlink_list_integrations

Response: Returns all connected integrations. Look for google-forms in the list.

Verify Connection

clawlink_list_tools --integration google-forms

Response: Returns the live tool catalog for Google Forms.

Reconnect

If Google Forms tools are missing or the connection shows an error:

  1. Direct the user to https://claw-link.dev/dashboard?add=google-forms
  2. After they confirm, call clawlink_list_integrations to verify
  3. Then call clawlink_list_tools --integration google-forms

Security & Permissions

  • Access is scoped to forms within the connected Google account.
  • All write operations require explicit user confirmation. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.
  • Destructive actions (delete form, delete question) are marked as high-impact and must be confirmed.
  • Watch deletion is a write operation that must be confirmed.

Tool Reference

Form Discovery & Reading

ToolDescriptionMode
-------------------------
googleforms_list_formsList all forms owned by or accessible to the userRead
googleforms_get_formGet a form's metadata, settings, and question structureRead
googleforms_list_forms_with_filterList forms filtered by criteria (owner, modified date, etc.)Read
googleforms_get_form_by_form_idRetrieve a specific form by its IDRead

Form Creation & Updates

ToolDescriptionMode
-------------------------
googleforms_create_formCreate a new empty form with a titleWrite
googleforms_batch_update_formApply batch updates to form questions, settings, or itemsWrite
googleforms_update_formUpdate a form's title or settingsWrite
googleforms_add_form_questionAdd a new question to an existing formWrite
googleforms_delete_form_questionDelete a question from a formWrite
googleforms_reorder_form_questionsReorder questions within a formWrite

Response Management

ToolDescriptionMode
-------------------------
googleforms_list_form_responsesList all responses submitted to a formRead
googleforms_get_form_responseGet a specific response by IDRead
googleforms_get_form_response_as_csvDownload form responses as CSVRead
googleforms_delete_form_responseDelete a specific response from a formWrite

Publishing Settings

ToolDescriptionMode
-------------------------
googleforms_update_is_accepting_responsesEnable or disable response collectionWrite
googleforms_update_link_settingsConfigure the form's share link settingsWrite
googleforms_update_sharing_settingsUpdate who can view or edit the formWrite
googleforms_publish_formPublish or unpublish a formWrite

Watch Management (Response Notifications)

ToolDescriptionMode
-------------------------
googleforms_create_watchCreate a watch to receive push notifications for new responsesWrite
googleforms_list_watchesList all watches on a formRead
googleforms_get_watchGet a specific watch by IDRead
googleforms_delete_watchDelete a watch to stop notificationsWrite

Batch Operations

ToolDescriptionMode
-------------------------
googleforms_batch_create_itemsCreate multiple form items in a single requestWrite
googleforms_batch_delete_itemsDelete multiple form items in a single requestWrite

Code Examples

List all forms

clawlink_call_tool --tool "googleforms_list_forms" \
  --params '{
    "page_size": 50
  }'

Get form structure

clawlink_call_tool --tool "googleforms_get_form" \
  --params '{
    "form_id": "YOUR_FORM_ID"
  }'

Create a new form

clawlink_call_tool --tool "googleforms_create_form" \
  --params '{
    "title": "Customer Feedback Survey"
  }'

List form responses

clawlink_call_tool --tool "googleforms_list_form_responses" \
  --params '{
    "form_id": "YOUR_FORM_ID"
  }'

Create a watch for new responses

clawlink_call_tool --tool "googleforms_create_watch" \
  --params '{
    "form_id": "YOUR_FORM_ID",
    "watch_type": "RESPONSES"
  }'

Update publishing settings

clawlink_call_tool --tool "googleforms_update_is_accepting_responses" \
  --params '{
    "form_id": "YOUR_FORM_ID",
    "is_accepting_responses": true
  }'

Discovery Workflow

  1. Call clawlink_list_integrations to confirm Google Forms is connected.
  2. Call clawlink_list_tools --integration google-forms to see the live catalog.
  3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.
  4. If the user describes a capability but the exact tool is unclear, call clawlink_search_tools with a short query and integration google-forms.
  5. If no Google Forms tools appear, direct the user to https://claw-link.dev/dashboard?add=google-forms.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  READ OPERATIONS (Safe)                                     │
│  list → get → describe → call                               │
│                                                             │
│  Example: List forms → Get structure → Show results         │
└─────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────┐
│  WRITE OPERATIONS (Require Confirmation)                    │
│  describe → preview → confirm → call                        │
│                                                             │
│  Example: Describe tool → Preview changes → User approves    │
│           → Execute update                                   │
└─────────────────────────────────────────────────────────────┘
  1. For unfamiliar tools, ambiguous requests, or any write action, call clawlink_describe_tool first.
  2. Use the returned guidance, schema, whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.
  3. Prefer reading form structure and responses before writes.
  4. For form creation, question updates, publishing setting changes, watch creation or deletion, or anything marked as requiring confirmation, call clawlink_preview_tool first.
  5. Execute with clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.
  6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.

Notes

  • Form IDs are the unique identifiers used in the form's URL.
  • Watches require a target (webhook URL or Cloud Pub/Sub topic) to receive notifications.
  • Watches may expire and need renewal — check expiration settings.
  • Batch updates let you make multiple changes in a single API call, reducing quota usage.

Error Handling

Status / ErrorMeaning
-------------------------
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration google-forms.
Missing connectionGoogle Forms is not connected. Direct the user to https://claw-link.dev/dashboard?add=google-forms.
RESOURCE_NOT_FOUNDForm does not exist. Check the form_id.
PERMISSION_DENIEDNo access to the form. Check sharing settings.
INVALID_ARGUMENTInvalid parameter or missing required field. Review the tool schema with clawlink_describe_tool.
Write rejectedUser did not confirm a write action. Always confirm before executing writes.

Troubleshooting: Tools Not Visible

  1. Check that the ClawLink plugin is installed:

```bash

openclaw plugins list

```

  1. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  2. If a fresh chat does not help, run:

```bash

openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json

openclaw gateway restart

```

  1. After restart, tell the user to send /new again and retry.

Troubleshooting: Invalid Tool Call

  1. Ensure the integration slug is exactly google-forms.
  2. Use clawlink_describe_tool to verify parameter names and types before calling.
  3. For write operations, always call clawlink_preview_tool first.

Resources

Related Skills


Powered by ClawLink — an integration hub for OpenClaw

!ClawLink Logo

版本历史

共 2 个版本

  • v1.0.6 当前
    2026-06-09 16:20 安全 安全
  • v0.1.0
    2026-05-08 02:23 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,119 📥 839,014
ai-agent

Find Skills

guipi888
场景驱动+关键词双模式技能发现工具。当用户用自然语言描述场景/需求(如"我想做一个海报""帮我分析股票"),或明确说"安装技能/find skills/找个skill"时,自动从官方内置、本地已安装、SkillHub、虾评、GitHub、C
★ 1,485 📥 547,287
dev-programming

GitHub

hith3sh
通过 GitHub REST 和GraphQL API 与仓库、议题、拉取请求、提交、分支、发布和工作流进行交互。在需要时使用此技能。
★ 6 📥 1,958