blueprint.jsonproductivityMakev1.0.0
Make: Slack Channel Digest
Runs on a schedule, reads recent Slack messages, and posts a summarized digest.
Setup time: ~8 min
Last updated: Mar 16, 2026
Template
blueprint.json
{
"name": "Slack Channel Digest",
"flow": [
{
"id": 1,
"module": "builtin:BasicScheduler",
"version": 1,
"parameters": {
"interval": "daily",
"time": "17:00"
},
"mapper": {},
"metadata": { "designer": { "x": 0, "y": 0 } }
},
{
"id": 2,
"module": "http:makeRequest",
"version": 1,
"parameters": {},
"mapper": {
"url": "https://slack.com/api/conversations.history",
"method": "GET",
"qs": [
{ "name": "channel", "value": "YOUR_CHANNEL_ID" },
{ "name": "oldest", "value": "{{addHours(now; -24) | formatDate('X')}}" },
{ "name": "limit", "value": "100" }
],
"headers": [
{ "name": "Authorization", "value": "Bearer YOUR_SLACK_TOKEN" }
]
},
"metadata": { "designer": { "x": 300, "y": 0 } }
},
{
"id": 3,
"module": "builtin:BasicAggregator",
"version": 1,
"parameters": {},
"mapper": {
"values": "{{2.data.messages}}"
},
"metadata": { "designer": { "x": 600, "y": 0 } }
},
{
"id": 4,
"module": "slack:sendMessage",
"version": 1,
"parameters": {
"channel": "#daily-digest"
},
"mapper": {
"text": ":newspaper: *Daily Channel Digest*\nMessages today: {{length(2.data.messages)}}\nCheck #general for the full conversation."
},
"metadata": { "designer": { "x": 900, "y": 0 } }
}
],
"metadata": { "version": 1 }
}Setup
- 1
Copy the template content above.
- 2
Adapt it for your framework and environment.
- 3
Replace all placeholder values.
- 4
Run and test.
Install
Copy the template content above and adapt it for your setup. Replace placeholder values before running.
No specific install steps for this framework. Copy the content, adjust the config, and run it in your environment.
Version History
v1.0.0Initial releaseMar 16, 2026
Framework
MakeRequirements
Slack (Make module)
HTTP (Make module)
File type
blueprint.json
Version
v1.0.0
Updated Mar 16, 2026
You might also like
SOUL.md
Email Triage Bot
Scan your inbox every morning. Flag what matters, summarize the rest.
~$0.30/day · ~5 min setup
SOUL.md
Daily Standup Reporter
Generate standup reports from git, calendar, and tasks. Post to your team channel.
~$0.15/day · ~5 min setup
HEARTBEAT.md
Calendar Prep
Brief you on upcoming meetings with context from email and docs.
~$0.25/day · ~5 min setup