standup
스타10
포크0
업데이트2026년 4월 28일 12:20
Summarize recent activity across issues and commits.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Summarize recent activity across issues and commits.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Add a comment to an issue.
Document a completed issue in the wiki (functional, technical, decision, solution).
Summarize a ticket's history, description, comments, and status.
Start tracked work: find/create ticket, set in-progress, track progress in comments.
Bump the tracker VERSION (semver) so update-check hook notifies existing installs.
Create a new issue (ticket, bug, feature request).
| name | standup |
| description | Summarize recent activity across issues and commits. |
| allowed-tools | Read, Glob, Grep, Bash(git log *), Bash(jq *) |
Generate a standup summary of recent project activity.
jq instead of reading the full file. Token-efficient TOON output:
jq -r --arg since "$(date -u -v-24H +%Y-%m-%dT%H:%M:%SZ 2>/dev/null || date -u -d '24 hours ago' +%Y-%m-%dT%H:%M:%SZ)" '
[.[] | select(.updated >= $since)] as $r
| "issues[\($r | length)]{id,status,priority,title}:",
($r[] | " \(.id),\(.status),\(.priority),\(.title)")
' .project/issues_index.json
This emits TOON (Token-Oriented Object Notation) — ~40% fewer tokens than JSON. Only use the bare filename if jq is unavailable; never dump the full file./rebuild-index.git log --oneline --since="24 hours ago" for recent commits.Keep the whole standup output ≤ ~25 lines. No analysis paragraphs — bullets only.