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.