$npx -y skills add googleworkspace/cli --skill gws-workflowGoogle Workflow: Cross-service productivity workflows.
| 1 | # workflow (v1) |
| 2 | |
| 3 | > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. |
| 4 | |
| 5 | ```bash |
| 6 | gws workflow <resource> <method> [flags] |
| 7 | ``` |
| 8 | |
| 9 | ## Helper Commands |
| 10 | |
| 11 | | Command | Description | |
| 12 | |---------|-------------| |
| 13 | | [`+standup-report`](../gws-workflow-standup-report/SKILL.md) | Today's meetings + open tasks as a standup summary | |
| 14 | | [`+meeting-prep`](../gws-workflow-meeting-prep/SKILL.md) | Prepare for your next meeting: agenda, attendees, and linked docs | |
| 15 | | [`+email-to-task`](../gws-workflow-email-to-task/SKILL.md) | Convert a Gmail message into a Google Tasks entry | |
| 16 | | [`+weekly-digest`](../gws-workflow-weekly-digest/SKILL.md) | Weekly summary: this week's meetings + unread email count | |
| 17 | | [`+file-announce`](../gws-workflow-file-announce/SKILL.md) | Announce a Drive file in a Chat space | |
| 18 | |
| 19 | ## Discovering Commands |
| 20 | |
| 21 | Before calling any API method, inspect it: |
| 22 | |
| 23 | ```bash |
| 24 | # Browse resources and methods |
| 25 | gws workflow --help |
| 26 | |
| 27 | # Inspect a method's required params, types, and defaults |
| 28 | gws schema workflow.<resource>.<method> |
| 29 | ``` |
| 30 | |
| 31 | Use `gws schema` output to build your `--params` and `--json` flags. |