standup

📁 soul-brews-studio/oracle-skills-cli 📅 9 days ago
1
总安装量
1
周安装量
#54369
全站排名
安装命令
npx skills add https://github.com/soul-brews-studio/oracle-skills-cli --skill standup

Agent 安装分布

mcpjam 1
openhands 1
junie 1
zencoder 1
crush 1

Skill 文档

/standup – Daily Standup

Quick check: pending tasks, appointments, recent progress.

Step 0: Timestamp

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

Usage

/standup          # Full standup check

Action

Gather info from multiple sources:

0. Physical Location (auto)

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 (งานค้าง)

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

2. Current Focus

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

3. Schedule/Appointments

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

4. Recent Progress (24h)

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

5. Latest Retrospective

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

Output Format

## 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