recipe-collect-form-responses
googleworkspace/cli
Retrieve and review responses from a Google Form.
What is recipe-collect-form-responses?
This recipe lets you list Google Forms, fetch form details, and retrieve all responses in a structured format. Use it when you need to programmatically access form submission data for analysis or review.
- List all Google Forms in your workspace
- Retrieve detailed form structure and metadata
- Fetch all form responses in table format
- Access response data programmatically via CLI
How to install recipe-collect-form-responses
npx skills add null --skill recipe-collect-form-responses- gws-forms skill must be installed
- Google Workspace CLI (gws) must be available
How to use recipe-collect-form-responses
- 1.Run `gws forms forms list` to see all available forms and identify the form ID you need
- 2.Run `gws forms forms get --params '{"formId": "FORM_ID"}'` to view form structure and details
- 3.Run `gws forms forms responses list --params '{"formId": "FORM_ID"}' --format table` to retrieve and display all responses
Use cases
- Export form responses for data analysis or reporting
- Audit form submissions and review collected data
- Integrate form responses into automated workflows
- Check response counts and submission details without opening Google Forms UI
- Data analysts reviewing survey or feedback data
- Automation engineers building form-to-workflow pipelines
- Productivity teams managing form-based data collection
- Developers integrating Google Forms with other systems
recipe-collect-form-responses FAQ
Run `gws forms forms list` to display all forms in your workspace with their IDs.
Yes, the `--format table` option displays responses as a table. Other formats may be available depending on the gws CLI version.
Install it first using the skill installation command, as it is a prerequisite for this recipe.
The recipe retrieves all responses. Filtering would require post-processing the output or using additional gws parameters if supported.
Full instructions (SKILL.md)
Source of truth, from googleworkspace/cli.
name: recipe-collect-form-responses description: "Retrieve and review responses from a Google Form." metadata: version: 0.22.5 openclaw: category: "recipe" domain: "productivity" requires: bins: - gws skills: - gws-forms
Check Form Responses
PREREQUISITE: Load the following skills to execute this recipe:
gws-forms
Retrieve and review responses from a Google Form.
Steps
- List forms:
gws forms forms list(if you don't have the form ID) - Get form details:
gws forms forms get --params '{"formId": "FORM_ID"}' - Get responses:
gws forms forms responses list --params '{"formId": "FORM_ID"}' --format table
Related skills
More from googleworkspace/cli and the wider catalog.
gws-gmail
Send, read, and manage Gmail emails via Google Workspace CLI.
gws-drive
Manage Google Drive files, folders, and shared drives via CLI.
gws-docs
Read and write Google Docs via command line.
gws-calendar
Manage Google Calendar events, calendars, and access control via CLI.
gws-sheets
Read and write Google Sheets spreadsheets via CLI.
gws-gmail-send
Send emails via Gmail with attachments, CC/BCC, HTML support, and draft options.