Agent Skills
› googleworkspace/cli
› recipe-create-feedback-form
recipe-create-feedback-form
GitHub通过gws-forms创建Google反馈表单,并调用gws-gmail将表单链接发送给指定收件人,实现自动化的反馈收集与通知流程。
Trigger Scenarios
需要收集活动或项目反馈时
需批量发送表单链接给团队成员时
Install
npx skills add googleworkspace/cli --skill recipe-create-feedback-form -g -y
SKILL.md
Frontmatter
{
"name": "recipe-create-feedback-form",
"metadata": {
"version": "0.22.5",
"openclaw": {
"domain": "productivity",
"category": "recipe",
"requires": {
"bins": [
"gws"
],
"skills": [
"gws-forms",
"gws-gmail"
]
}
}
},
"description": "Create a Google Form for feedback and share it via 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'
Version History
- a3768d0 Current 2026-08-20 07:26


