
Recipe Create Feedback Form
Spin up a Google Form for event or product feedback and email the responder link to attendees from the terminal via gws.
Overview
recipe-create-feedback-form is an agent skill for the Grow phase that creates a Google Form for feedback and emails the form link to recipients using gws.
Install
npx skills add https://github.com/googleworkspace/cli --skill recipe-create-feedback-formWhat is this skill?
- 3-step recipe: create Form JSON, read responderUri, send Gmail with gws +send
- Chains gws-forms and gws-gmail as prerequisites—load both before running
- Uses gws CLI with bins: gws only
- Example payload: Event Feedback title and company attendee blast
- OpenClaw recipe metadata v0.22.5, domain productivity
- 2 prerequisite skills: gws-forms and gws-gmail
Adoption & trust: 15.2k installs on skills.sh; 26.9k GitHub stars; 2/3 security scanners passed (skills.sh audits).
What problem does it solve?
You need a feedback form live and in inboxes quickly without manually building the Form and copying the share link into Gmail.
Who is it for?
Solo builders on gws who run recurring events, betas, or support surveys and want a documented three-command workflow.
Skip if: Teams that need Typeform, in-app NPS, or form logic without Google Workspace and gws auth configured.
When should I use this skill?
Create a Google Form for feedback and share it via Gmail using gws after loading gws-forms and gws-gmail.
What do I get? / Deliverables
You end with a published Form, its responder URI captured, and a sent email pointing recipients to that URL.
- Created Google Form
- Captured form responder URL
- Sent email with form link
Recommended Skills
Journey fit
Feedback collection and follow-up distribution sit in Grow—after you have users or attendees to hear from. Lifecycle covers post-interaction surveys and ongoing satisfaction loops, which this recipe automates end to end.
How it compares
A fixed recipe sequence over ad-hoc Form and Gmail UI steps—not a standalone MCP server for Forms.
Common Questions / FAQ
Who is recipe-create-feedback-form for?
Indie builders and small teams already using the Google Workspace gws CLI with gws-forms and gws-gmail who want agent-guided steps to publish and distribute a feedback form.
When should I use recipe-create-feedback-form?
Use it in Grow lifecycle after launches or events, in Grow support when collecting issue reports, or in Validate when you need structured beta feedback—once attendees or users exist to email.
Is recipe-create-feedback-form safe to install?
It orchestrates real Form creation and outbound Gmail; review the Security Audits panel on this Prism page and scope OAuth tokens before running against production mailboxes.
SKILL.md
READMESKILL.md - Recipe Create Feedback Form
# 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 1. Create form: `gws forms forms create --json '{"info": {"title": "Event Feedback", "documentTitle": "Event Feedback Form"}}'` 2. Get the form URL from the response (responderUri field) 3. Email the form: `gws gmail +send --to attendees@company.com --subject 'Please share your feedback' --body 'Fill out the form: FORM_URL'`