advisory-minutes

Converts Zoom advisory session transcripts into Notion meeting minutes, task boards, and client notifications.

366|90|Updated Aug 22, 2026
One-click install
npx skills add https://github.com/bam-bam-2/solo-skills --skill advisory-minutes-bam-bam-2
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: advisory-minutes
Source: https://github.com/bam-bam-2/solo-skills/tree/main/skills/advisory-minutes
Command: npx skills add https://github.com/bam-bam-2/solo-skills --skill advisory-minutes-bam-bam-2

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? After each 1:1 advisory session, someone must manually download the Zoom transcript, write structured meeting minutes, publish them to a Notion coaching dashboard, register action items, and notify the client. This Skill automates that entire post-session pipeline. ## Core Features & Use Cases - Zoom Transcript Retrieval: Downloads recordings via Zoom S2S OAuth, handling the separate download_access_token requirement and UTC-to-KST date conversion. - Structured Minutes in Notion: Writes minutes in a fixed format (conclusion, discussion flow, decisions, action items) and creates pages via the Notion REST API, avoiding the MCP number-property bug. - Follow-up Automation: Registers action items to a task board, updates the dashboard highlight quote, and sends a KakaoTalk notification to the client with a disclosure line. - Use Case: After a late-night advisory call, ask the agent to process the session; it fetches the transcript, publishes formatted minutes to the client's Notion dashboard, logs to-dos, and sends the client a confirmation message. ## Quick Start Process yesterday's advisory session transcript and post the meeting minutes to the client's Notion coaching dashboard.

Frequently Asked Questions about advisory-minutes

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I download Zoom meeting transcripts via API?

Use Zoom Server-to-Server OAuth to get an access token, list recordings via the /users/me/recordings endpoint, then request a download_access_token from the meeting recordings endpoint. Appending a regular Bearer token to the download URL returns a 401 error.

How do I create Notion pages with number properties via API?

Use the Notion REST API directly with POST /v1/pages and a Notion-Version header. The Notion MCP create-pages tool sends number properties as strings and fails with a 400 error, so REST is required for fields like session number.

Why does my Zoom recording download return 401 Forbidden?

The download_url requires a separate download_access_token, not the standard OAuth Bearer token. Request it with include_fields=download_access_token on the meeting recordings endpoint, then append it as ?access_token= to the download URL.

Can this workflow handle sessions that start near midnight?

Yes. Zoom start_time values are in UTC, so Korean time is UTC+9 and late-night sessions may shift the date by one day. The minutes should record the actual local start time and flag the date conversion.

What are the limitations of automated meeting minutes from transcripts?

Transcripts often corrupt proper nouns and numbers, so figures must be verified before publishing. Internal judgments and sensitive remarks must be filtered out since the dashboard is shared with the client.