
Recipe Collect Form Responses
- 24.2k installs
- 30k repo stars
- Updated July 22, 2026
- googleworkspace/cli
recipe-collect-form-responses is a Google Workspace CLI recipe that retrieves and reviews responses from a Google Form.
About
recipe-collect-form-responses is a Google Workspace CLI recipe that retrieves and reviews responses from a Google Form. Software engineers use it to automate form data collection and analysis. It queries Forms API to access responses in structured format.
- Retrieves Google Form responses programmatically
- Structured output for analysis and processing
- Real-time form data access without UI
Recipe Collect Form Responses by the numbers
- 24,198 all-time installs (skills.sh)
- +800 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #44 of 690 Office & Documents skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
recipe-collect-form-responses capabilities & compatibility
- Works with
- google drive
- Use cases
- data analysis · planning
What recipe-collect-form-responses says it does
Retrieve and review responses from a Google Form.
npx skills add https://github.com/googleworkspace/cli --skill recipe-collect-form-responsesAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 24.2k |
|---|---|
| repo stars | ★ 30k |
| Last updated | July 22, 2026 |
| Repository | googleworkspace/cli ↗ |
How do you export Google Form responses to terminal?
Programmatically collect and analyze Google Form responses
Who is it for?
Automated form response collection and analysis
Skip if: Teams needing spreadsheet analytics pipelines or form creation instead of response retrieval from an existing form.
When should I use this skill?
You need to access and process Google Form responses
What you get
Table-formatted Google Form response export with form metadata from gws commands
- Form response table export
- Form metadata snapshot
By the numbers
- Recipe metadata version 0.22.5
- Uses three gws forms commands: list, get, and responses list
Files
Check Form Responses
PREREQUISITE: Load the following skills to execute this recipe: gws-formsRetrieve 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
Related skills
FAQ
How does recipe-collect-form-responses fetch submissions?
recipe-collect-form-responses runs gws forms forms list to find a form ID, gws forms forms get for details, then gws forms forms responses list --format table to export live responses into the terminal.
What does recipe-collect-form-responses require?
recipe-collect-form-responses needs the gws binary and the gws-forms prerequisite skill loaded first. Recipe metadata is version 0.22.5 in the googleworkspace/cli productivity domain.