PluginBench
Skill
Review
Audit score 70

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
Prerequisites
  • gws-forms skill must be installed
  • Google Workspace CLI (gws) must be available
Claude Code
Cursor
Windsurf
Cline

How to use recipe-collect-form-responses

  1. 1.Run `gws forms forms list` to see all available forms and identify the form ID you need
  2. 2.Run `gws forms forms get --params '{"formId": "FORM_ID"}'` to view form structure and details
  3. 3.Run `gws forms forms responses list --params '{"formId": "FORM_ID"}' --format table` to retrieve and display all responses

Use cases

Good for
  • 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
Who it's for
  • 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

How do I find my form ID?

Run `gws forms forms list` to display all forms in your workspace with their IDs.

Can I export responses in different formats?

Yes, the `--format table` option displays responses as a table. Other formats may be available depending on the gws CLI version.

What if I don't have the gws-forms skill installed?

Install it first using the skill installation command, as it is a prerequisite for this recipe.

Can I filter responses or get only recent submissions?

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

  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