standup
Summarize recent activity across issues and commits.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Summarize recent activity across issues and commits.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
| 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.
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).