Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Create a Google Form for feedback collection and share it with respondents via Gmail.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-create-feedback-form3description: "Create a Google Form for feedback and share it via Gmail."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-forms14- gws-gmail15---1617# Create and Share a Google Form1819> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-forms`, `gws-gmail`2021Create a Google Form for feedback and share it via Gmail.2223## Steps24251. Create form: `gws forms forms create --json '{"info": {"title": "Event Feedback", "documentTitle": "Event Feedback Form"}}'`262. Get the form URL from the response (responderUri field)273. Email the form: `gws gmail +send --to [email protected] --subject 'Please share your feedback' --body 'Fill out the form: FORM_URL'`2829