AgentSkillsCN

standup

每日站立会议检查——待办事项、预约安排、近期进展。当用户说“站立会议”、“晨间检查”、“还有哪些待办事项”时使用。

SKILL.md
--- frontmatter
name: standup
description: Daily standup check - pending tasks, appointments, recent progress. Use when user says "standup", "morning check", "what's pending".

/standup - Daily Standup

Quick check: pending tasks, appointments, recent progress.

Step 0: Timestamp

bash
date "+🕐 %H:%M %Z (%A %d %B %Y)"

Usage

code
/standup          # Full standup check

Action

Gather info from multiple sources:

0. Physical Location (auto)

bash
gh api repos/laris-co/nat-location-data/contents/current.csv --jq '.content' | base64 -d | grep iPhone | head -1 | cut -d',' -f9

Show: "📍 Currently at: [place]"

1. Open Issues (งานค้าง)

bash
gh issue list --state open --limit 10 --json number,title,updatedAt --jq '.[] | "#\(.number) \(.title)"'

2. Current Focus

bash
cat ψ/inbox/focus*.md 2>/dev/null | head -20

3. Schedule/Appointments

bash
cat ψ/inbox/schedule.md 2>/dev/null | head -30

4. Recent Progress (24h)

bash
git log --since="24 hours ago" --format="%h %s" | head -10

5. Latest Retrospective

bash
ls -t ψ/memory/retrospectives/**/*.md 2>/dev/null | head -1

Output Format

markdown
## Standup @ [TIME]

### Done (24h)
- [commit 1]
- [commit 2]

### In Progress
- [from focus.md]

### Pending Issues
| # | Task | Updated |
|---|------|---------|
| #N | title | date |

### Appointments Today
- [from schedule.md or "ไม่มีนัด"]

### Next Action
- [suggest based on priorities]

---
💡 `/schedule` to see full calendar

Related

  • /schedule - Full calendar view
  • /wip - Work in progress
  • /recap - Full context summary

ARGUMENTS: $ARGUMENTS