Mmk notion meeting comment
Skill magic-meal-kits/mmk-skills/skills/mmk-notion-meeting-comment
Claude Code skills for Magic Meal Kits CLI — Notion, Paymint, Threads, YouTube automation
npx -y skills add magic-meal-kits/mmk-skills --skill mmk-notion-meeting-commentAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Post a structured summary comment on a Notion meeting page — extracts action items and decisions from transcript. Triggers on "summarize meeting as comment", "post meeting summary", "comment meeting notes", "meeting action items comment".
SKILL.md
2.7 KB, as published. Nobody here has run it
Recipe: Meeting Notes Commentator
Prerequisite: Read
../mmk-shared/SKILL.mdfor auth, global flags, and error handling. Uses:mmk-notion-page— Page transcript command. Uses:mmk-notion-comment— Comment add command.
A multi-step workflow that extracts a meeting page transcript, summarizes action items and key decisions, and posts a structured comment back to the page.
This recipe has side effects (posts comments on Notion pages). It requires manual invocation only.
Workflow
Step 1: Get meeting page transcript
mmk notion page transcript <page_id> --include summary,notes -o json
Retrieve the meeting transcript with summary and notes sections.
Step 2: Extract action items and decisions
Analyze the transcript output and extract:
- Action items (who, what, when)
- Key decisions made
- Follow-up items
Step 3: Format structured comment
Format the extracted information as a structured comment:
Action Items:
- [ ] @person: Task description (by date)
Key Decisions:
- Decision description
Follow-ups:
- Follow-up item
Adapt the format and language based on the transcript content and user preferences.
Step 4: Post comment to the meeting page
mmk notion comment add --page-id <page_id> --text "<formatted summary>" -o json
Step 5: Confirm to user
Report:
- Number of action items, decisions, and follow-ups extracted
- Comment posted successfully
- Offer to adjust or add more detail
Parameters
| Parameter | Required | Description |
|---|---|---|
page_id | Yes | Notion meeting page ID or URL |
Example Session
User: /mmk-notion-meeting-comment
Claude: Which meeting page would you like me to summarize?
User: https://notion.so/meeting-abc123
Claude: [Step 1] Fetching meeting transcript...
Found transcript with summary and notes.
[Step 2] Extracting action items and decisions...
Found 3 action items, 2 key decisions, 1 follow-up.
[Step 3] Formatting structured comment...
[Step 4] Posting comment to the meeting page...
Comment posted successfully.
Summary posted:
- 3 action items assigned
- 2 key decisions documented
- 1 follow-up noted
Would you like me to adjust anything?