Trigger Phrases
Say any of these to activate this skill:
"standup""daily update""what did""yesterday""today plan""blockers"
Tools Used
send_message memory_read memory_write canvas_create canvas_update
How It Works
# Standup Collection
Facilitate daily standup updates:
1. **Prompt** โ If a channel is configured, send standup prompt:
```
๐๏ธ **Daily Standup**
Share your update:
- **Yesterday:** What did you complete?
- **Today:** What are you working on?
- **Blockers:** Anything blocking you?
```
2. **Collect** โ Parse responses from the user (or team if multi-user channel)
3. **Compile** โ Build standup summary:
- Completed items grouped by person
- Planned items for today
- Active blockers highlighted
4. **Build canvas** โ Update the sprint board or create a standup summary canvas
5. **Track** โ Save standup data to memory for patterns:
- Recurring blockers
- Velocity trends
- Stale tasks (planned but not started for >2 days)
6. **Notify** โ Post compiled summary to team channel via `send_message`
Facilitate daily standup updates:
1. **Prompt** โ If a channel is configured, send standup prompt:
```
๐๏ธ **Daily Standup**
Share your update:
- **Yesterday:** What did you complete?
- **Today:** What are you working on?
- **Blockers:** Anything blocking you?
```
2. **Collect** โ Parse responses from the user (or team if multi-user channel)
3. **Compile** โ Build standup summary:
- Completed items grouped by person
- Planned items for today
- Active blockers highlighted
4. **Build canvas** โ Update the sprint board or create a standup summary canvas
5. **Track** โ Save standup data to memory for patterns:
- Recurring blockers
- Velocity trends
- Stale tasks (planned but not started for >2 days)
6. **Notify** โ Post compiled summary to team channel via `send_message`