Recipe Collect Form Responses
v1.0.12Retrieve and review responses from a Google Form.
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description (collect Google Form responses) align with the declared requirement for the 'gws' binary and the dependent 'gws-forms' skill — those are the tools you would expect to use for Google Forms access.
Instruction Scope
SKILL.md only instructs running specific gws commands to list forms, get form details, and list responses. It does not ask the agent to read unrelated files, exfiltrate data, or call external endpoints outside the gws CLI.
Install Mechanism
There is no install spec (instruction-only), so nothing is downloaded or written to disk by this skill itself — lowest-risk install profile.
Credentials
The skill declares no environment variables or credentials. That's reasonable because it relies on the gws CLI for auth; however, gws itself will require Google authentication (stored/configured outside this skill). Users should ensure they trust and correctly configure the gws CLI and any other skills (gws-forms) that provide credentials.
Persistence & Privilege
The skill is not always-enabled and does not request elevated/persistent privileges or modify other skills' configurations.
Assessment
This recipe is instruction-only and simply runs the gws CLI to list forms and responses. Before enabling: ensure you have the gws CLI installed from a trusted source and that it's authenticated to the Google account you intend to use; install or enable the referenced gws-forms skill if required. Understand that this skill itself does not request credentials — the gws tool will access your Google credentials/configuration, so verify gws' permissions and stored tokens. If you need stricter controls, restrict which Google account or service account gws uses or test the commands manually first.Like a lobster shell, security has layers — review code before you run it.
Runtime requirements
Binsgws
latest
Check Form Responses
PREREQUISITE: Load the following skills to execute this recipe:
gws-forms
Retrieve and review responses from a Google Form.
Steps
- List forms:
gws forms forms list(if you don't have the form ID) - Get form details:
gws forms forms get --params '{"formId": "FORM_ID"}' - Get responses:
gws forms forms responses list --params '{"formId": "FORM_ID"}' --format table
Comments
Loading comments...
