googleworkspace avatar

Recipe Post Mortem Setup

googleworkspace/cli
20.2k

This skill automates the creation of post-mortem reports by generating a Google Docs document, scheduling a review meeting in Google Calendar, and sending notifications via Google Chat. It streamlines incident follow-up processes for teams by integrating multiple Google Workspace tools through CLI commands. Designed for engineers and team members managing incident reviews, it simplifies post-mortem setup and promotes efficient collaboration.

npx skills add https://github.com/googleworkspace/cli --skill recipe-post-mortem-setup

Set Up Post-Mortem

PREREQUISITE: Load the following skills to execute this recipe: gws-docs, gws-calendar, gws-chat Create a Google Docs post-mortem, schedule a Google Calendar review, and notify via Chat.

Steps

  1. Create post-mortem doc: gws docs +write --title 'Post-Mortem: [Incident]' --body '## Summary\n\n## Timeline\n\n## Root Cause\n\n## Action Items'
  2. Schedule review meeting: gws calendar +insert --summary 'Post-Mortem Review: [Incident]' --attendee team@company.com --start '2026-03-16T14:00:00' --end '2026-03-16T15:00:00'
  3. Notify in Chat: gws chat +send --space spaces/ENG_SPACE --text 'πŸ” Post-mortem scheduled for [Incident].'

GitHub Owner

Owner: googleworkspace

SKILL.md


name: recipe-post-mortem-setup version: 1.0.0 description: "Create a Google Docs post-mortem, schedule a Google Calendar review, and notify via Chat." metadata: openclaw: category: "recipe" domain: "engineering" requires: bins: ["gws"] skills: ["gws-docs", "gws-calendar", "gws-chat"]

Set Up Post-Mortem

PREREQUISITE: Load the following skills to execute this recipe: gws-docs, gws-calendar, gws-chat Create a Google Docs post-mortem, schedule a Google Calendar review, and notify via Chat.

Steps

  1. Create post-mortem doc: gws docs +write --title 'Post-Mortem: [Incident]' --body '## Summary\n\n## Timeline\n\n## Root Cause\n\n## Action Items'
  2. Schedule review meeting: gws calendar +insert --summary 'Post-Mortem Review: [Incident]' --attendee team@company.com --start '2026-03-16T14:00:00' --end '2026-03-16T15:00:00'
  3. Notify in Chat: gws chat +send --space spaces/ENG_SPACE --text 'πŸ” Post-mortem scheduled for [Incident].'

More skills