standup
Summarize recent activity across issues and commits.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Summarize recent activity across issues and commits.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
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).
Based on SOC occupation classification
| 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.