
Recipe Collect Form Responses
Pull and review Google Form submissions via gws so an agent can summarize validation signals without opening the Forms UI.
Overview
Recipe Collect Form Responses is an agent skill for the Validate phase that retrieves and reviews Google Form responses using gws forms list, get, and responses list commands.
Install
npx skills add https://github.com/googleworkspace/cli --skill recipe-collect-form-responsesWhat is this skill?
- 3-step recipe: list forms if needed, get form metadata, list responses with table format
- Prerequisite skill gws-forms must be loaded before running commands
- Uses gws forms forms list, get, and responses list with formId params
- OpenClaw productivity domain recipe on gws CLI 0.22.5
- Table output flag for human-readable response review in the terminal
Adoption & trust: 15.4k installs on skills.sh; 26.9k GitHub stars.
What problem does it solve?
You ran a Google Form for beta interest or pricing feedback but need the raw responses in a repeatable CLI flow your coding agent can parse.
Who is it for?
Solo builders with live Google Forms who want agent-readable response pulls during landing-page or survey validation.
Skip if: Building new forms, branching logic design, or analytics pipelines that need BigQuery—use broader forms or data skills instead.
When should I use this skill?
Retrieve and review responses from a Google Form.
What do I get? / Deliverables
You obtain form metadata and a response listing (table formatted when requested) ready for summarization, scoring, or attachment to a validation note.
- Form metadata from forms get
- Response listing from responses list
Recommended Skills
Journey fit
Canonical shelf is Validate because the recipe is built to read survey and waitlist responses—the kind of evidence solo builders collect on landing pages before committing to a full build. Landing fits form-backed capture (interest surveys, beta signups, pricing polls) where the form ID exists and you need a structured response export.
How it compares
Prefer this recipe over manual Forms export when you want the same three gws commands encoded for agents instead of one-off browser downloads.
Common Questions / FAQ
Who is recipe-collect-form-responses for?
Solo and indie builders using agentic workflows with Google Workspace who need to audit form submissions from the terminal via gws.
When should I use recipe-collect-form-responses?
Use it in Validate landing work after a form is live—e.g., weekly review of waitlist responses—or in Grow content cycles when repurposing survey quotes, once formId is known or discoverable via list.
Is recipe-collect-form-responses safe to install?
It documents read-only Forms API listing; check the Security Audits panel on this page and limit OAuth scopes to what your agent needs.
Workflow Chain
Requires first: gws forms
SKILL.md
READMESKILL.md - Recipe Collect Form Responses
# Check Form Responses > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-forms` Retrieve and review responses from a Google Form. ## Steps 1. List forms: `gws forms forms list` (if you don't have the form ID) 2. Get form details: `gws forms forms get --params '{"formId": "FORM_ID"}'` 3. Get responses: `gws forms forms responses list --params '{"formId": "FORM_ID"}' --format table`