recipe-create-feedback-form
googleworkspace/cli
Create a Google Form for feedback and share it via Gmail.
What is recipe-create-feedback-form?
This recipe combines Google Forms and Gmail to streamline feedback collection. Use it when you need to quickly gather structured feedback from a group and distribute it via email.
- Create a new Google Form with customizable title and metadata
- Extract the form's shareable URL from the creation response
- Send the form link via Gmail to specified recipients
- Automate the entire feedback distribution workflow
How to install recipe-create-feedback-form
npx skills add null --skill recipe-create-feedback-form- gws-forms skill installed
- gws-gmail skill installed
- Google Workspace account with Forms and Gmail enabled
How to use recipe-create-feedback-form
- 1.Run the form creation command with your desired title and document title
- 2.Copy the responderUri (form URL) from the JSON response
- 3.Prepare your recipient email address or mailing list
- 4.Run the Gmail send command with the form URL in the message body
- 5.Recipients will receive the email with a direct link to the form
Use cases
- Distribute event feedback forms to attendees after a meeting or conference
- Collect customer satisfaction surveys and email them to a mailing list
- Gather team feedback on projects and share the form with stakeholders
- Send product feedback forms to beta testers via email
- Create and distribute post-training evaluation forms to participants
- Event organizers
- Product managers
- Team leads
- Customer success teams
- Training coordinators
recipe-create-feedback-form FAQ
This recipe creates the form structure only. You can manually edit questions in Google Forms after creation, or use the gws-forms skill directly for more advanced customization.
Use a mailing list email address in the --to parameter, or run the send command multiple times with different recipient addresses.
The form URL is in the responderUri field of the JSON response from the forms create command.
Yes, the --subject and --body parameters are fully customizable. Include the FORM_URL placeholder where you want the link to appear.
Full instructions (SKILL.md)
Source of truth, from googleworkspace/cli.
name: recipe-create-feedback-form description: "Create a Google Form for feedback and share it via Gmail." metadata: version: 0.22.5 openclaw: category: "recipe" domain: "productivity" requires: bins: - gws skills: - gws-forms - gws-gmail
Create and Share a Google Form
PREREQUISITE: Load the following skills to execute this recipe:
gws-forms,gws-gmail
Create a Google Form for feedback and share it via Gmail.
Steps
- Create form:
gws forms forms create --json '{"info": {"title": "Event Feedback", "documentTitle": "Event Feedback Form"}}' - Get the form URL from the response (responderUri field)
- Email the form:
gws gmail +send --to attendees@company.com --subject 'Please share your feedback' --body 'Fill out the form: FORM_URL'
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.