What problem does it solve? Managing Google Forms programmatically requires learning the Forms API structure and authentication flow, which slows down tasks like bulk form creation, response retrieval, and publish settings management. ## Core Features & Use Cases - Form Lifecycle Management: Create empty forms with a title, then add items via batchUpdate, and retrieve form definitions with get. - Responses and Watches: Access form responses and manage watches for change notifications through dedicated sub-resources. - Schema Discovery: Inspect any method's required parameters, types, and defaults with gws schema forms.<resource>.<method> before building requests. - Use Case: A team lead needs to spin up a weekly feedback form, add questions, and later pull all responses. They create the form, batch-update it with items, and fetch responses, all from the terminal. ## Quick Start Ask the assistant to create a new Google Form titled "Team Feedback" and then list its responses using the gws forms commands.