PluginBench
Skill
Pass
Audit score 90

gws-workflow-standup-report

googleworkspace/cli

Generate today's standup summary from Google Calendar meetings and open tasks.

What is gws-workflow-standup-report?

This skill pulls your calendar agenda for today and combines it with your open tasks to create a quick standup report. Use it each morning to brief your team on what you're working on and when you're available.

  • Fetches today's calendar meetings from Google Calendar
  • Retrieves your current open tasks
  • Combines both into a single standup summary
  • Outputs in multiple formats (JSON, table, YAML, CSV)
  • Read-only operation—never modifies your data

How to install gws-workflow-standup-report

npx skills add null --skill gws-workflow-standup-report
Prerequisites
  • Google Workspace account with Calendar and Tasks enabled
  • gws CLI installed and authenticated (see gws-shared skill)
  • Read access to your Google Calendar and Tasks
Claude Code
Cursor
Windsurf
Cline

How to use gws-workflow-standup-report

  1. 1.Run `gws workflow +standup-report` to generate today's summary in JSON format
  2. 2.Add `--format table` to view as a formatted table, or use `yaml`/`csv` for other formats
  3. 3.Review the combined output of meetings and tasks
  4. 4.Share or export the report as needed for your standup

Use cases

Good for
  • Generate a daily standup report before team meetings
  • Share your availability and priorities with colleagues
  • Create a quick status update for async communication
  • Export standup data to different formats for reporting tools
  • Review your day's schedule and task load at a glance
Who it's for
  • Team leads and managers
  • Individual contributors in agile teams
  • Remote workers doing async standups
  • Anyone using Google Workspace for calendar and task management

gws-workflow-standup-report FAQ

Does this modify my calendar or tasks?

No, it is read-only and never changes any data.

What time period does it cover?

It pulls today's meetings from your calendar and your current open tasks.

Can I export the standup report?

Yes, use the `--format` flag to output as JSON, table, YAML, or CSV.

Do I need to set up authentication separately?

No, authentication is handled by the gws-shared skill. Ensure you've completed the setup in gws-shared first.

Full instructions (SKILL.md)

Source of truth, from googleworkspace/cli.


name: gws-workflow-standup-report description: "Google Workflow: Today's meetings + open tasks as a standup summary." metadata: version: 0.22.5 openclaw: category: "productivity" requires: bins: - gws cliHelp: "gws workflow +standup-report --help"

workflow +standup-report

PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it.

Today's meetings + open tasks as a standup summary

Usage

gws workflow +standup-report

Flags

FlagRequiredDefaultDescription
--formatOutput format: json (default), table, yaml, csv

Examples

gws workflow +standup-report
gws workflow +standup-report --format table

Tips

  • Read-only — never modifies data.
  • Combines calendar agenda (today) with tasks list.

See Also