googleworkspace/cli · Official

gws-forms

Read and write Google Forms.

All-time #649 Trending #1147 Hot #5494 First seen Mar 4, 2026
8-week activity · all time api

Installation

$ npx skills add googleworkspace/cli --skill gws-forms

Summary

  • Read and write Google Forms through direct API resource commands.
  • Supports five core operations: create forms, retrieve form data, batch update form structure, manage publish settings, and handle responses and watches Requires Google Workspace authentication via the shared gws prerequisite; review ../gws-shared/SKILL.md for auth setup and security rules Use gws schema to inspect method signatures, required parameters, and data types before constructing API calls with --params and --json flags Form creation requires a two-step process: first call forms.create with title only, then use forms.batchUpdate to add items and configure settings

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Security audits

Partner security reviews for this skill.

agent-trust-hub SAFE

Analyzed Apr 1, 2026

This skill is a standard integration for managing Google Forms via the vendor's 'gws' CLI tool. No malicious patterns, obfuscation, or unauthorized data access were detected.

snyk MEDIUM

Analyzed Apr 1, 2026

[MEDIUM] W011: Third-party content exposure detected (indirect prompt injection risk).

socket Score 0.9000 · 0 alerts

Analyzed Apr 1, 2026

  • license 1
  • maintenance 1
  • quality 0.9
  • supply chain 1
  • vulnerability 1

0 alerts

Also in this package

Other skills from googleworkspace/cli · top by installs.

npx skills add googleworkspace/cli

Browse all from googleworkspace/cli

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 30.8K
License LICENSE
Default branch main
Open issues 129
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.22.5
Declared agents clawdbot
More metadata
version
0.22.5
openclaw
{"category":"productivity","requires":{"bins":["gws"]},"cliHelp":"gws forms --help"}

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,574 B
  • docs SUMMARY.md 45 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 36,300 installs

SKILL.md

forms (v1)

PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it.

gws forms <resource> <method> [flags]

API Resources

forms

- batchUpdate — Change the form with a batch of updates. - create — Create a new form using the title given in the provided form message in the request. Important: Only the form.info.title and form.info.documenttitle fields are copied to the new form. All other fields including the form description, items and settings are disallowed. To create a new form and add items, you must first call forms.create to create an empty form with a title and (optional) document title, and then call forms.update to add the items. - get — Get a form. - setPublishSettings — Updates the publish settings of a form. Legacy forms aren't supported because they don't have the publishsettings field. - responses — Operations on the 'responses' resource - watches — Operations on the 'watches' resource

Discovering Commands

Before calling any API method, inspect it:

# Browse resources and methods
gws forms --help

# Inspect a method's required params, types, and defaults
gws schema forms.<resource>.<method>

Use gws schema output to build your --params and --json flags.