standuplisted
Install: claude install-skill vantageos-agency/vantage-peers
# Standup
Generate a structured standup report and file it as a briefing note in VantagePeers.
## WORKFLOW
1. Detect orchestrator role and instanceId from CLAUDE.md
2. Get current date: `date +%Y-%m-%d`
3. Fetch all tasks: `mcp__vantage-peers__list_tasks` assignedTo={role}
4. Get git state: `git status --short` and `git log --oneline -10`
5. Build the report (see format below)
6. File: `mcp__vantage-peers__create_briefing_note` title="Standup {role} {date}", topic="standup", participants=["{role}"], createdBy="{role}"
7. Ping: `mcp__vantage-peers__send_message` from="{role}", channel="pi-chromebook", content="Standup filed -- {summary}"
## OUTPUT FORMAT
```
STANDUP -- {role} ({instanceId}) -- {date}
DONE (since last standup):
- [task title] -- [completionNote]
IN PROGRESS:
- [task title] -- [status, % estimate]
BLOCKERS:
- [description] -- [what's needed]
GIT:
- Branch: {branch}
- Uncommitted: {count} files
- Ready to push: yes/no
```
## RULES
- DONE = status "done", completedAt within last 24h
- IN PROGRESS = status "in_progress" or "review"
- BLOCKERS = status "blocked" + unmet dependencies
- Git status is mandatory
- If nothing done, say so. No padding.
- The briefing note is the permanent record. The message is just a ping.
- 5 lines beats 50.