jetbrains/skills

gws-forms

Read and write Google Forms.

First seen Apr 28, 2026

Installation

$ npx skills add jetbrains/skills --skill gws-forms

Similar popular skills

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

Also in this package

Other skills from jetbrains/skills · top by installs.

npx skills add jetbrains/skills

Browse all from jetbrains/skills

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 340
Default branch main
Open issues 4
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
Declared agents clawdbot
More metadata
short-description
Read and write Google Forms
author
Google Workspace
openclaw
{"category":"productivity","requires":{"bins":["gws"]},"cliHelp":"gws forms --help"}
source
https://github.com/googleworkspace/cli/tree/main/skills/gws-forms

Package contents

Files included with this skill beyond the listing page.

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

History

  1. First seen on skills.sh
  2. First recorded snapshot · 14 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.