wadewarren/gws-claude-plugin

gws-forms

Google Forms: Read and write forms.

First seen Mar 20, 2026

Installation

$ npx skills add wadewarren/gws-claude-plugin --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 wadewarren/gws-claude-plugin · top by installs.

npx skills add wadewarren/gws-claude-plugin

Browse all from wadewarren/gws-claude-plugin

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 38
License LICENSE
Default branch main
Open issues 1
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
Declared agents clawdbot
More metadata
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,572 B
  • docs SUMMARY.md 52 B

History

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