|
| 1 | +# Weekly Team Update Skill |
| 2 | + |
| 3 | +> Build narrative weekly updates for manager reports by gathering data from multiple sources. |
| 4 | +
|
| 5 | +## Data Sources |
| 6 | + |
| 7 | +### Notion - Previous Updates |
| 8 | + |
| 9 | +``` |
| 10 | +notion_notion-fetch(id="<page-id>") |
| 11 | +``` |
| 12 | + |
| 13 | +### Linear - Issue Tracking |
| 14 | + |
| 15 | +``` |
| 16 | +linear_list_issues(team="<team>", label="DX Deliverable") |
| 17 | +linear_get_issue(id="<issue-id>") |
| 18 | +``` |
| 19 | + |
| 20 | +### Slack - Channel Context |
| 21 | + |
| 22 | +``` |
| 23 | +slack_slack_get_channel_history(channel_id="<channel-id>", limit=100) |
| 24 | +``` |
| 25 | + |
| 26 | +**Slack URL Format:** `https://<workspace>.slack.com/archives/<channel-id>/p<timestamp_without_dot>` |
| 27 | + |
| 28 | +## Output Structure |
| 29 | + |
| 30 | +- **BIG ROCKS** - Major ships, strategic initiatives |
| 31 | +- **MEDIUM ROCKS** - In-progress work with clear targets |
| 32 | +- **SMALL STUFF** - Backlog items |
| 33 | +- **Challenges** - Blockers, issues |
| 34 | + |
| 35 | +### For Each Item |
| 36 | + |
| 37 | +1. Title with link (Linear issue or live content) |
| 38 | +2. Supporting links (Slack threads, PRs, social) |
| 39 | +3. Why it matters |
| 40 | +4. Challenges (for big rocks) |
| 41 | + |
| 42 | +## Swarm Pattern |
| 43 | + |
| 44 | +1. Spawn parallel research workers (Notion, Linear, Slack) |
| 45 | +2. **HUMAN REVIEW** before posting (critical - this goes to leadership) |
| 46 | +3. After approval, spawn publish worker |
| 47 | + |
| 48 | +## Key Learnings |
| 49 | + |
| 50 | +- **Attribution matters** - "Joel's hypothesis that Eve validated" |
| 51 | +- **Links are non-negotiable** - Every claim needs a link |
| 52 | +- **Story > Bullets** - Boss wants narrative, not task lists |
| 53 | +- **Human review before publish** - Manager updates go to leadership |
| 54 | + |
| 55 | +## Linear Skill Reference |
| 56 | + |
| 57 | +Already exists at: `/Users/joel/.config/opencode/skills/linear/SKILL.md` |
| 58 | + |
| 59 | +- Has team IDs, collaborators, workflow states |
| 60 | +- Use as reference for Education team queries |
0 commit comments