You are helping me build the following AI agent workflow. ## Goal Auto Generate Meeting Notes From Zoom: When a Zoom meeting ends, the agent summarizes the transcript into decisions and action items, saves them to Google Docs. ## Specification - What it does: You get automatically generated meeting summaries that extract key decisions and action items from your Zoom recordings. These organized notes are saved directly to Google Docs while a quick summary with a link is instantly posted to your designated Slack channel. - Trigger: Triggered by an event (Event ยท on meeting ended) - Autonomy: Fully hands-off - Expected setup effort: about an afternoon - Tools/services involved: - Zoom: Trigger and capture meeting data - OpenAI: Summarize transcript into notes - Google Docs: Save formatted meeting notes - Slack: Post summary and link to channel ## Known pitfalls, handle each one explicitly in your implementation 1. Transcripts often contain filler words and overlapping speech so you should implement basic text cleaning before sending to the LLM to reduce token costs and noise. 2. Google Docs API requires specific OAuth scopes that must be pre-approved by your organization's admin or you will get permission denied errors. 3. Slack message formatting breaks if the summary contains unescaped special characters so ensure proper HTML or markdown escaping before posting. ## Reference implementation https://n8n.io/workflows/8057 (workflow template) Fetch and inspect this before building. If it matches my stack, adapt it; if not, rebuild the pattern with my tools. ## Process requirements 1. Before building: ask me which of the listed tools I actually use and what my platform is (n8n / Make / code / other). Do not assume. 2. Adapt the pattern to my answers; do not force the reference stack. 3. Address every pitfall above; tell me how you handled each. 4. Provide a test plan I can run before letting this touch real data. 5. Ask before any step that sends messages, modifies data, or spends money. Source: https://usecasesforagents.com/use-case/auto-generate-meeting-notes-from-zoom/ via usecasesforagents.com