# Recipe Post Mortem Setup > Create a Google Docs post-mortem, schedule a Google Calendar review, and notify via Chat. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-post-mortem-setup Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 22 tok installed, 257 tok once triggered, 257 tok with every bundled file Bundle: 1 file, 1 KB Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-post-mortem-setup --agent claude-code ``` ## What it does - Crea un documento de post-mortem en Google Docs con secciones de Resumen, Cronología, Causa Raíz y Acción - Programa una reunión de revisión en Google Calendar con asistentes y horario - Envía una notificación a un espacio de Google Chat sobre el post-mortem ## Use it when - Cuando necesitas configurar todo el flujo de un post-mortem tras un incidente ## What triggers it - "Crea un post-mortem para el incidente de ayer y agenda la revisión" - "Configura el post-mortem del incidente en Docs, Calendar y Chat" ## Before you install - Requiere el binario `gws` y cargar las skills gws-docs, gws-calendar y gws-chat. ## Files - SKILL.md — 1 KB ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # 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].'` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-post-mortem-setup