gws-forms
Google Forms CLI operations via gws. Use when users need to get form metadata, retrieve form responses, create forms, or update forms. Triggers: google forms, form responses, survey, form data, create form, update form.
What this skill does
# Google Forms (gws forms) `gws forms` provides CLI access to Google Forms with structured JSON output. > **Disclaimer:** `gws` is not the official Google CLI. This is an independent, open-source project not endorsed by or affiliated with Google. ## Dependency Check **Before executing any `gws` command**, verify the CLI is installed: ```bash gws version ``` If not found, install: `go install github.com/omriariav/workspace-cli/cmd/gws@latest` ## Authentication Requires OAuth2 credentials. Run `gws auth status` to check. If not authenticated: `gws auth login` (opens browser for OAuth consent). For initial setup, see the `gws-auth` skill. ## Quick Command Reference | Task | Command | |------|---------| | Get form info | `gws forms info <form-id>` | | Get form details (alias) | `gws forms get <form-id>` | | Get all form responses | `gws forms responses <form-id>` | | Get a single response | `gws forms response <form-id> --response-id <id>` | | Create a new form | `gws forms create --title "My Form"` | | Update a form | `gws forms update <form-id> --title "New Title"` | ## Detailed Usage ### info — Get form info ```bash gws forms info <form-id> ``` Gets metadata about a Google Form including title, description, and question structure. ### get — Get form details ```bash gws forms get <form-id> ``` Alias for `info`. Gets metadata about a Google Form including title, description, and question structure. ### responses — Get all form responses ```bash gws forms responses <form-id> ``` Gets all responses submitted to a form, with question titles mapped to answers. ### response — Get a single form response ```bash gws forms response <form-id> --response-id <response-id> ``` Gets a specific response by ID from a form. **Flags:** - `--response-id string` — Response ID to retrieve (required) ### create — Create a new form ```bash gws forms create --title "Feedback Survey" gws forms create --title "Team Poll" --description "Weekly team feedback" ``` Creates a new blank Google Form with a title and optional description. **Flags:** - `--title string` — Form title (required) - `--description string` — Form description (optional) ### update — Update a form ```bash gws forms update <form-id> --title "New Title" gws forms update <form-id> --description "Updated description" gws forms update <form-id> --file batch-update.json ``` Updates a Google Form. For simple changes use `--title` or `--description` flags. For advanced updates (adding questions, etc.), provide a JSON file with a batchUpdate request body. **Flags:** - `--title string` — New form title - `--description string` — New form description - `--file string` — Path to JSON file with batchUpdate request body ## Output Modes ```bash gws forms info <form-id> --format json # Structured JSON (default) gws forms info <form-id> --format yaml # YAML format gws forms info <form-id> --format text # Human-readable text ``` ## Tips for AI Agents - Always use `--format json` (the default) for programmatic parsing - Form IDs can be extracted from Google Forms URLs: `docs.google.com/forms/d/<ID>/edit` - Use `info` to understand the form structure before fetching responses - Use `create` to make a new blank form, then `update --file` to add questions via batchUpdate - The `get` command is an alias for `info` — both return the same output - Use `--quiet` on any command to suppress JSON output (useful for scripted actions)
Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit — setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard — shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.