Read and write Google Forms through direct API resource commands.
Supports five core operations: create forms, retrieve form data, batch update form structure, manage publish settings, and handle responses and watches Requires Google Workspace authentication via the shared gws prerequisite; review ../gws-shared/SKILL.md for auth setup and security rules Use gws schema to inspect method signatures, required parameters, and data types before constructing API calls with --params and --json flags Form creation requires a two-step process: first call forms.create with title only, then use forms.batchUpdate to add items and configure settings
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
This skill is a standard integration for managing Google Forms via the vendor's 'gws' CLI tool. No malicious patterns, obfuscation, or unauthorized data access were detected.
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeNot declared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Repository health
Stars30.8K
LicenseLICENSE
Default branchmain
Open issues129
Status
Active
Skill metadata
Parsed from SKILL.md frontmatter.
Version0.22.5
Declared agentsclawdbot
More metadata
version
0.22.5
openclaw
{"category":"productivity","requires":{"bins":["gws"]},"cliHelp":"gws forms --help"}
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md1,574 B
docsSUMMARY.md45 B
History
First seen on skills.sh
First recorded snapshot · 36,300 installs
SKILL.md
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.documenttitle 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 publishsettings 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.