Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Cross-service Google Workspace productivity workflows: standup reports, meeting prep, email-to-task, weekly digest.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: gws-workflow3description: "Google Workflow: Cross-service productivity workflows."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws workflow --help"12---1314# workflow (v1)1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718```bash19gws workflow <resource> <method> [flags]20```2122## Helper Commands2324| Command | Description |25|---------|-------------|26| [`+standup-report`](../gws-workflow-standup-report/SKILL.md) | Today's meetings + open tasks as a standup summary |27| [`+meeting-prep`](../gws-workflow-meeting-prep/SKILL.md) | Prepare for your next meeting: agenda, attendees, and linked docs |28| [`+email-to-task`](../gws-workflow-email-to-task/SKILL.md) | Convert a Gmail message into a Google Tasks entry |29| [`+weekly-digest`](../gws-workflow-weekly-digest/SKILL.md) | Weekly summary: this week's meetings + unread email count |30| [`+file-announce`](../gws-workflow-file-announce/SKILL.md) | Announce a Drive file in a Chat space |3132## Discovering Commands3334Before calling any API method, inspect it:3536```bash37# Browse resources and methods38gws workflow --help3940# Inspect a method's required params, types, and defaults41gws schema workflow.<resource>.<method>42```4344Use `gws schema` output to build your `--params` and `--json` flags.4546