mirror of
https://github.com/domfelipe/vibeflow-n8n.git
synced 2026-08-07 07:36:46 +00:00
1.2 KiB
1.2 KiB
Recipe: Slack to Notion Triage
Goal
Capture important Slack mentions, classify them, create a Notion item for tracking, and route urgent cases to an escalation channel.
Typical trigger
- mention of a bot in Slack
- reactions on flagged messages
- specific channel messages matching a pattern
Systems involved
- Slack
- Notion
- optional AI classification step
- optional email or secondary Slack alert
Core steps
- Listen for the configured Slack trigger.
- Normalize message text, author, channel, and timestamp.
- Classify urgency and category.
- Create a Notion page or database item.
- Route urgent messages to an escalation destination.
- Write a final status field for reporting.
Important assumptions
- urgency rules should be explicit and editable
- Notion database schema is known or mapped in advance
- Slack formatting should be simplified before storage
What makes this recipe good for demos
- looks modern and relatable
- easy to understand visually
- strong before-and-after story from message to tracked item
Validation checklist
- trigger fires only for intended messages
- urgency logic is deterministic
- Notion fields are mapped correctly
- urgent path and normal path both succeed
- duplicate handling is defined