Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Read and write Google Forms — create forms, batch-update items, manage responses and watch notifications.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: gws-forms3description: "Read and write Google Forms."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws forms --help"12---1314# forms (v1)1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718```bash19gws forms <resource> <method> [flags]20```2122## API Resources2324### forms2526- `batchUpdate` — Change the form with a batch of updates.27- `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.28- `get` — Get a form.29- `setPublishSettings` — Updates the publish settings of a form. Legacy forms aren't supported because they don't have the `publish_settings` field.30- `responses` — Operations on the 'responses' resource31- `watches` — Operations on the 'watches' resource3233## Discovering Commands3435Before calling any API method, inspect it:3637```bash38# Browse resources and methods39gws forms --help4041# Inspect a method's required params, types, and defaults42gws schema forms.<resource>.<method>43```4445Use `gws schema` output to build your `--params` and `--json` flags.4647