Use when you've just created a document, plan, design doc, or artifact and want to notify the team. Also use when the user says "headsup", "let Chris know", "let Tom know", "post to slack", "notify the team", or "send to exec-team".
Post a short summary (intro line + 3 bullets) of a newly created artifact to #exec-team, @mentioning the other co-founder.
Determine who's running this session, then @mention the other person:
| Sender machine | Recipient | Slack user ID |
|---|---|---|
tomweaver ($USER) | Chris Evans | U07C0T9J9QD |
| Chris's machine | Tom Weaver | U04M914C00L |
Check or to determine sender. Default recipient is Chris (most common case — Tom is usually the one sending).
$USERwhoamiWrite as a personal heads-up from one co-founder to the other. Casual, direct. Structure: one intro line summarising what was done, followed by up to 3 bullets with key details.
Example tone:
Hey @Chris — heads up, I've written up a design doc for the gate watchdog based on the pipeline freeze we hit yesterday.
- Covers timeout thresholds, fallback chains, and supervisor authority changes
- Includes a phased rollout (watchdog first, then degraded-mode dispatch)
- It's at
docs/plans/2026-02-18-gate-watchdog-design.mdin the zazig repo
Use Doppler to inject the CPO bot token, post via Slack API:
doppler run --project zazig --config prd -- bash -c '
curl -s -X POST https://slack.com/api/chat.postMessage \
-H "Authorization: Bearer $CPO_SLACK_BOT_TOKEN" \
-H "Content-Type: application/json" \
-d "{
\"channel\": \"C0AGDQ9GBLY\",
\"text\": \"Hey <@RECIPIENT_USER_ID> — YOUR_SUMMARY_HERE\",
\"unfurl_links\": false
}"'
C0AGDQ9GBLY = #exec-teamunfurl_links: false to keep the message clean'\''"ok":true